Questions tagged [microsoft-custom-vision]

145 questions
1
vote
0 answers

How to fix "ErrorSource" when using CreateImagesFromUrls endpoint in Microsoft Custom Vision Training API

When using the "CreateImagesFromUrls" endpoint of the Microsoft Cognitive Services Custom Vision Training API I get an error returned for each image saying "ErrorSource". I am able to create tags using the API so I don't think it's an…
1
vote
1 answer

Azure Custom Vision: Is it possible to store image metadata (NOT tags) in the Custom Vision environment?

I have images with important file metadata (e.g. provenance and processing history) stored locally or in Azure blob storage. I would like to import (POST) these to the Azure Custom Vision environment (via the API or GUI) (see e.g.…
jtlz2
  • 7,700
  • 9
  • 64
  • 114
1
vote
1 answer

How can I get normalized coordinated from an object in images

I am building a custom vision application with Microsoft's CustomVision.ai. I am using this tutorial: https://learn.microsoft.com/en-us/azure/cognitive-services/custom-vision-service/csharp-tutorial-od At one point I need to: When you tag images…
1
vote
0 answers

How to use `application/octet-stream` in JavaScript

I'm having a bit of a problem putting some pieces together in an app I'm building. I'm using React-Native, and have the camera storing an image. There are two ways I can get Microsoft's Face API to evaluate an image: External…
1
vote
3 answers

How to uploading duplicate tags at some picture for azure custom vision?

I have a question for azure custom vision. I have a custom vision project for object detection. And I use the python SDK to create the project (see that:…
Alan Su
  • 13
  • 3
1
vote
2 answers

Python custom vision predictor fails

I'm using Python to retrieve a Blob image from Azure storage and then send it to Custom Vision for a prediction. This is the code: import io from azure.storage.blob import BlockBlobService from azure.cognitiveservices.vision.customvision.prediction…
wasp256
  • 5,943
  • 12
  • 72
  • 119
1
vote
2 answers

CustomVision API returns "Operation returned an invalid status code: 'NotFound'"

I am using the Nuget package Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction I have created a Custom Vision application in the Custom Vision portal and obtained API keys and a project ID. Whenever I try to make a request to the API,…
Toto
  • 736
  • 9
  • 33
1
vote
1 answer

Is it possible for azure custom vision api to detect multiple objects in single image

I am new to Azure Cognitive services. I want to detect multiple objects in a single image. Is it possible with custom vision api. Any help is appreciated. Thank you.
1
vote
0 answers

Load Tensorflow model from CustomVision in Python

I trained a model using customvision.ai and I exported the model to use it local. I have a problem with next line: output_layer = 'loss:0' "The name 'loss:0' refers to a Tensor which does not exist. The operation, 'loss', does not exist in the…
GameZone RO
  • 63
  • 1
  • 8
1
vote
2 answers

Various errors using VisionServiceClient in XamarinForms

I am trying to create a simple Xamarin forms app which allows the user to browse for or take a photo and have azure cognitive services tag the photo using a custom vision model. I am unable to get the client to successfully authenticate or find a…
1
vote
3 answers

What is the correct upload URL for a Dockerhub repo

I am following the instructions for the custom-vision service on raspberry-pi on IOT edge. I have reached step 3, where in VS Code I am executing Build and Push to IOT Edge Solution and this is triggering the following command: docker build --rm -f…
Mark Cooper
  • 6,738
  • 5
  • 54
  • 92
1
vote
0 answers

Sending image file to REST api using Ajax

I'm trying to work on Microsoft's Custom Vision API however they only have documentation for Python, Java, and .NET. Based on their API instructions I have to include Precition-Key and Content-Type as part of the headers and "Set Body to : ". I'm…
0
votes
0 answers

How to fix Error 404 Resource not Found in Azure Custom Vision API

I am trying to train an Azure Custom Vision model by following the instructions on this Learn page: Quickstart: Create an image classification project with the Custom Vision client library or REST API using Java. When I finally try to run the Gradle…
0
votes
1 answer

How to change azure custom vision annotation format to yolo v8 format In python

I have scripted to download annotated image from azure custom vision with following API. API gives probability score of an area where a license plate is detected and its corresponding bounding box. there will be multiple probabilities as image may…
0
votes
0 answers

Can't get data labels from ONNX Model exported from Microsoft Custom Vision

I'm using Microsoft Custom Vision to build an image classifier. Then, I'm able to download the ONNX file and get probabilities from the Model on a WPF app. My issue is that I'm not able to get labels for those probabilities. Under netron.app the…