I am trying to create an app that uses IBM Watson Visual Recognition for sortering waste. Watson runs in the backend (node js) and I wanted to develop the application in Vue
.
Watson needs a link to an image, and I was thinking of using firebase in order to create the link when an user uploads an image.
My question is: "Is there a better way to do it, considering that the image and its results should be unique to the user an do not have to persist?"
I do not know much about Visual Recognition and just a little of firebase. So, if there is a way to handle things better, please say. Thanks!
As per the API documentation, you can submit the image to be classified either as a url or as a readstream. https://cloud.ibm.com/apidocs/visual-recognition/visual-recognition-v3?code=node#classify
The sample provided in the API docs makes use of a readstream :