Questions tagged [microsoft-custom-vision]

145 questions
0
votes
0 answers

Downloading and performing transfer learning with a Custom Vision model export in TensorFlow formats

I have trained a model using Microsoft's Custom Vision API. I can export the model in TensorFlow in the following formats: savedModel, TensorFlow Lite Float16, TensorFlow Lite, TensorFlow.js, TensorFlow. I can also export the model as a…
aamm
  • 1
0
votes
0 answers

Tensorflow export to Python project error

Trying to export a Tensorflow model from customvision.ai to work in a VS Code Python project. Using this link for instructions: https://learn.microsoft.com/en-us/azure/cognitive-services/custom-vision-service/export-model-python Having a problem…
0
votes
1 answer

Hardware for running Custom Vision on Azure IoT Edge?

I have been looking at running Custom Vision at IoT Edge. I would like to do something similar to as what they have done in this demo https://www.youtube.com/watch?v=_K5fqGLO8us. They use a Raspberry Pi 3B+ and it works, but it is quite slow. It…
Rossario
  • 15
  • 1
  • 5
0
votes
0 answers

Is there any way to combine two custom vision project into one project?

I have two projects created in custom vision portal .Want to combine those two project into one .The project is created for object detection . Please help out is there any tool to merge those two projects ? Thanks
ahena
  • 1
  • 1
0
votes
1 answer

How to convert the annotation values of image data into yolo v4 format and upload the images in custom vision

I tried uploading the image dataset from Image datasetwith annotation around 500 images . But getting error "Image status : Invalid Region" This is the label.txt for single image This is the image I have no idea about how to code this and calculate…
0
votes
2 answers

Is it possible for Azure Custom Vision to analyze a video stream and count wheels on vehicle

I have a video feed from a remote camera, we would like to have a solution that looks at the video feed and counts the wheels on any vehicles that pass through its views. From what I have been reading this would be quite easy using images, but I can…
0
votes
1 answer

How to crop image based on Azure object detection output

I've an MS Azure Object detection model in customvision.ai website. I make predictions using it's API, then draw output bounding box as rectangle in the image. Following is the powershell code to achieve that: #First powershell script #API call to…
Surya
  • 37
  • 1
  • 10
0
votes
1 answer

Azure Custom Vision SDK ImageRegionCreateEntry doesn't seem to set region

I use the Azure Custom Vision SDK ImageRegionCreateEntry Class in Object Detection mode to set the region of each image to be the full image and the method shows success in the code (in full): string dir = "G:\\folderLocation"; string[] files =…
0
votes
1 answer

Sort JSON response from web api

I want to sort my JSON response by calling web API and will use only the highest probability and tagName from the response API. How can I do this in C# or do I need to use any lib? EDIT: This is the code that use to call I'm very new to coding thank…
0
votes
1 answer

Publishing Custom Vision Azure in Website

I made a image classification using custom vision and published it. After that I got this publishing url and prediction key. Now I am literally confused how to use this as a api in a website that I am making using MERN. Also the prediction url…
0
votes
1 answer

Using Azure Custom Vision prediction API to call a published model. but got an error CS0122

I'm very new to coding and currently trying to call a published image classification model to my C# window form.NET and using this…
0
votes
1 answer

Unable to create project for custom vision image classification using Java SDK

I am unable to create the project for the custom vision image classification using Java SDK. It is giving an error in the following line in the main method of CustomVisionQuickstart.java Project project = createProject(trainClient); I am following…
0
votes
1 answer

Unable to use azure custom vision python SDK predictor.detect_image function

I followed the code mentioned in below link https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/python/CustomVision/ObjectDetection/CustomVisionQuickstart.py Able to upload images, train model, publish model into…
0
votes
1 answer

How to build Face/ Image Classifier in Azure ML like Google Photos

I need to build an image classification model in Azure ML- which initially takes an input from Phone (A check in app which takes information like ID and also we will capture the image of the person- Here ID is used to tag the image) which will be…
0
votes
1 answer

How to change the size of an image in Azure's custom vision service?

I want to train model by using custom vision but when i add images in custom vision. Custom vision convert resize my image into (512,512). If there is any option so that i can set limit like (2000,2000) in custom vision.