LoginSignup
1
1

More than 3 years have passed since last update.

NoderedからWatson Visualize RecognitionのCustom Classifierを利用

Last updated at Posted at 2018-02-18

はじめに

NoderedからWatson Visual RecognitionのCustom Classifierを利用するほうほうが変更されたみたいなので、現時点のものを記載します。

Noderedの指定方法

スクリーンショット 2018-02-18 17.03.25.png

・「URL抽出」には普通にリンクを

msg.payloadには画像URLのリンクを入力

msg.payload = msg.payload.imageurl;
return msg;

・「classifier_id登録」にはclassifier_idを

msg.pramsには画像URLのリンクを入力

msg.params = []; 
msg.params={"classifier_ids":["dogs_XXX"],"threshold":0};
return msg;

・「Visual Recognition」にはAPI Keyを

スクリーンショット 2018-02-18 19.07.52.png

・設定完了

上記で設定完了です!
classifier_idsの登録方法の参考にしてください。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1