Make a RESTful Call
Nvision with Image Request
Using cURL command line
{
"raw_data": <<BASE64_ENCODED_IMAGE>>
}export API_KEY=<<YOUR_API_KEY>>
# read a local image from filepath
echo -n '{"raw_data": "'"$(base64 image.jpg)"'"}' | \
curl -X POST \
https://nvision.nipa.cloud/api/v1/object-detection \
-H 'Authorization: ApiKey '$API_KEY \
-H "Content-Type: application/json" \
-d @- | json_ppPrediction reponses

Using web demo

Last updated