Questions tagged [visual-recognition]

Use this tag when asking questions about the IBM Watson Visual Recognition

The IBM Watson Visual Recognition allows you to derive insights from an image based on its visual content. You can organize image libraries, understand an individual image, and create custom classifiers for specific results that are tailored to your needs.

More information: http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/visual-recognition.html

169 questions
2
votes
2 answers

Classifying Images using Bluemix

After thorough researching, I decided to use Bluemix for classifying and recognizing images. I'm have a starter question on how to begin programming using node.js runtime. I tried to follow this tutorial. However, that is just snippets of code. How…
skyrocket
  • 41
  • 1
  • 5
2
votes
2 answers

Watson visual recognition, classify against multiple classifiers in java

I found this curl command in API document that can classify an image against multiple classifiers: curl -u "{username}":"{password}" \ -X POST \ -F "images_file=@batch1.zip" \ -F "classifier_ids=
2
votes
2 answers

watson visual recognition error 400: cannot execute learning task: no classifier name given

I was about to create a new classifier and train the visual recognition with pictures, but I got this error code which is stated in title when I curl following command curl -u "0xxxxxxxxxxx":"vxxxxxxxxxxxxxx" \ -X POST \ -F…
Yuning
  • 53
  • 4
2
votes
2 answers

Visual Recognition error 400: Cannot execute learning task no classifier name given

I am using Visual Recognition curl command to add a classification to an image: curl -u "user":"password" \ -X POST \ -F "images_file=@image0.jpg" \ -F "classifier_ids=classifierlist.json"…
Gilad M
  • 942
  • 10
  • 12
2
votes
1 answer

Browserify not accessing node_modules

I made a visual recognition app using Watson api which included a node_modules file necessary to run the api call (the api call was made from api_request and it required modules in my node_modules folder. After it worked in the terminal, I installed…
bwad
  • 71
  • 3
  • 16
2
votes
1 answer

Watson visual recognition run error

I'm trying to set up a visual recognition app using the Watson visual recognition api. To do this I started by downloading watson-developer-cloud and I put it in my node_modules folder, which is next to my index.html and api_request.js. This is my…
bwad
  • 71
  • 3
  • 16
1
vote
2 answers

Is the faces model in Watson studio visual recognition discontinued?

In many tutorials I see the faces model built in to the Visual recognition tool in Watson studio. Ex. https://developer.ibm.com/articles/introduction-watson-visual-recognition/ "Tooling via Watson Studio" -> "Overview". However I can't seem to find…
1
vote
1 answer

Unable to generate refresh token for IBM Visual Recognition API

I am trying to work with IAM token based authentication. I am able to generate 'access token' and could do operations using the 'access token'. Now I am having issue while generating 'refresh token'. I am following this link…
C-ddhesh
  • 27
  • 4
1
vote
1 answer

How to submit in-memory images to Visual Recognition using Python

I'm working for the first time with IBM Watson Visual Recognition. My Python app needs to pass images that it's managing in memory to the service. However, the rather limited documentation and sample code I've been able to find from IBM shows calls…
mdravel
  • 11
  • 3
1
vote
0 answers

What's the difference between these 2 Keras approaches in Transfer Learning?

I've seen two different approaches for Transfer Learning/Fine Tuning and I'm not sure about their differences and benefits: One simply loads the model, eg. Inception, initialized with the weights generated from training on eg. Imagenet, freezes the…
crash
  • 4,152
  • 6
  • 33
  • 54
1
vote
0 answers

Java Netbeans code for IBM Watson Visual Recognition?

Respected All, I am new to learn IBM Watson for visual recognition and i have successfully created the visual recoginition model. I want to use this model from my form application for classifying images using that model. I have searched a lot but i…
1
vote
1 answer

It is possible to get the location of classified content in Watson Visual Recognition?

I'm testing IBM's Watson Visual Recognition using Node-RED, I've trained it to identify some elements in the image, but I wonder if it's possible to get the exact position of these elements.
Maicon Santos
  • 109
  • 1
  • 1
  • 10
1
vote
2 answers

How to deal with thousands of images for CNN training Keras

I have ~10000k images that cannot fit in memory. So for now I can only read 1000 images and train on it... My code is here : img_dir = "TrainingSet" # Enter Directory of all images image_path = os.path.join(img_dir+"/images",'*.bmp') files =…
1
vote
0 answers

Calling create classifier API of watson through electron

Following is the code to create a custom classifier from Watson API in Electron export function uploadVRData(api_key, payload, dest) { return (dispatch) => { const formData = new FormData(); formData.append('name', payload.classifier); …
sandy
  • 509
  • 1
  • 6
  • 23
1
vote
1 answer

Watson Visual Recognition API C# Authorisation

Trying to get Watson Visual Recognition working with C# but I am getting an unauthorised error when attempting to classify an image through the API. The credentials I'm using are the "Auto-generated service credentials". The error that I am…
jmac
  • 21
  • 5
1
2
3
11 12