Questions tagged [microsoft-custom-vision]
145 questions
1
vote
0 answers
create a project using Azure account
As per this page, I can not upload more than 100,000 images using customvision ai console.
https://learn.microsoft.com/en-us/azure/cognitive-services/custom-vision-service/limits-and-quotas
The tool-tip says: "If you need more quota, you should…

shantanuo
- 31,689
- 78
- 245
- 403
1
vote
1 answer
Getting KeyError: 'Endpoint' error in Python when calling Custom Vision API
from azure.cognitiveservices.vision.customvision.prediction import CustomVisionPredictionClient
from msrest.authentication import CognitiveServicesCredentials
from azure.cognitiveservices.vision.customvision import prediction
from PIL import…

paulbarbin
- 382
- 2
- 9
1
vote
1 answer
How to upload a batch of images to Azure Custom Vision using JavaScript
I want to upload a batch of 64 images to Custom Vision using the JavaScript SDK.
const files: ImageFileCreateEntry[] = []
while (i < 64) {
const data = fs.readFileSync(`${sampleDataRoot}/${tag.name}/${file}`)
const fileEntry:…

Evandro Pomatti
- 13,341
- 16
- 97
- 165
1
vote
1 answer
Azure Custom Vision: ONNX gives different results from that of the portal/API
I am using azure custom vision(customvision.ai) where i have upload around 100 images and have trained the model to detect face mask.
When i try to test in customvision portal it gives correct result but when i try to get the confidence/probability…

Pavankumar
- 33
- 4
1
vote
1 answer
Getting Unauthorized exception while uploading images to train custom vision
I have been following https://aischool.microsoft.com/en-us/services/learning-paths/sketch2code tutorial,
i have created Custom Vision instance in US West 2 region
trained sample image with 2 tags
change the key value in Program.cs file,
if i run…

adarsh
- 119
- 3
- 13
1
vote
0 answers
Who provides Custom Object Detection
Are Microsoft the only company who provided custom object detection? They have limit on 100 projects looking for a more scaleable provider.

Thomas Segato
- 4,567
- 11
- 55
- 104
1
vote
1 answer
Get the labeled data from a custom vision
I've trained an object detection model with custom vision, with data that I have labeled with the interface and I was wondering if I could export these labels. I looked around to see if we can but I didn't find any information about this.
I have…

AdForte
- 305
- 2
- 12
1
vote
1 answer
How to get original image name from Microsoft Custom Vision API?
I'm unsure how to associate the tagged regions with my original image file names.
Following the Custom Vision API documentation for GetTaggedImages request, I'm able to get a response with information about iteration id, created date, width, tagged…

Aragon
- 31
- 6
1
vote
0 answers
How to use customvision.ai to create object detection model for TensorFlow Lite?
I have an object detection model that I've created in https://customvision.ai. If I export it as a TensorFlow Lite model, I get a model that expects FLOAT32 [1, 416, 416, 3] as input and returns FLOAT32 [1, 13, 13, 35] as output (as per TensorFlow…

jonasb
- 1,847
- 1
- 17
- 15
1
vote
2 answers
Dealing with an opencv image (bytes, encoded as jpg) on a Flask API
My Challenge
I need to send and receive images using Flask, for doing realtime object detection over 1000's of camera streams.
Part 1: Sending my video frames to the API
I don't want to save the image frames on my disk, nowadays I don't have…

Renan Vilas Novas
- 1,210
- 1
- 10
- 22
1
vote
0 answers
Azure Custom Vision image-classification prediction - (how) are the images being resized to square?
There is a general question on this at Image classification and image resizing
But the present question is specifically about Azure Cognitive Services Custom Vision prediction using a Python/Tensorflow exported model.
Following…

jtlz2
- 7,700
- 9
- 64
- 114
1
vote
1 answer
Microsoft Custom Vision API: 404, Resource not found
I am trying to use Microsoft's Custom Vision API, but am running into nothing but 404 errors. How can I use the API?
I have tried copying and pasting and modifying the prediction sections of the Python and Javascript samples, such as the one found…

Tyson
- 592
- 4
- 13
1
vote
1 answer
Microsoft Cognitive Services custom vision - use without prediction API
I'm currently looking to use Microsoft Cognitive Service custom vision. It comes with a prediction API which you can use to fetch the predicted results. Is it possible to use Custom Vision without using this prediction API? With that, I mean just…

markvdlaan93
- 613
- 10
- 26
1
vote
1 answer
Azure Cognitive Services: Where are the missing Custom Vision Performance Statistics?
I am querying the Azure Custom Vision V3.0 Training API (see https://westeurope.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.0/operations/5c771cdcbf6a2b18a0c3b809) so I can generate per-tag ROCs myself via the…

jtlz2
- 7,700
- 9
- 64
- 114
1
vote
1 answer
Operation returned an invalid status code: 'NotFound'
I actually trained the model of custom vision to detect vehicles and i want to detect them in real time, so i tried to run the sample app available in github https://github.com/microsoft/Cognitive-Samples-VideoFrameAnalysis , but i always get this…

Hanane Triy
- 41
- 1
- 4