Make a RESTful Call
Nvision with Image Request
Nvision image processing is synchronous. The input requests and output responses are structured in JSON format. You can make a RESTful API call by sending the image as a base64 encoded string in the body of your request, see RESTful and WebSocket API concepts.
You can make a RESTful API call by sending the image as a base64 encoded string in the body of your request. The API is accessible via the domain, https://nvision.nipa.cloud/api/v1/<service_name>
over HTTP to POST data.
If you have not created a Nvision service account credentials, do so now in this set up the Nvision service quickstart for instructions.
Using cURL command line
Construct the request JSON body
Send the request using the cURL command line
Prediction reponses
The API responses a list of labels with corresponding confidence scores of how likely it is these labels are contained within the image or video.
In object detection, this service localizes and identifies multiple objects in the image such as people, animals, vehicles, furniture, etc. see machine learning services.
A response is returned in JSON format similar to the following example:
Using web demo
Last updated