Spaces:
Sleeping
Sleeping
File size: 995 Bytes
34f5d81 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# Custom Vision Export Object Detection Models
This model is exported from [Custom Vision Service](https://customvision.ai)
Please visit our [Sample scripts respository](https://github.com/Azure-Samples/customvision-export-samples).
## Prerequisites
(For TensorFlow Lite model) TensorFlow Lite 2.1 or newer
## Input specification
This model expects 320x320, 3-channel RGB images. Pixel values need to be in the range of [0-255].
## Output specification
There are three outputs from this model.
* detected_boxes
The detected bounding boxes. Each bounding box is represented as [x1, y1, x2, y2] where (x1, y1) and (x2, y2) are the coordinates of box corners.
* detected_scores
Probability for each detected boxes.
* detected_classes
The class index for the detected boxes.
# Reference
* [Custom Vision Service documentation](https://docs.microsoft.com/en-us/azure/cognitive-services/custom-vision-service/)
* [Sample scripts](https://github.com/Azure-Samples/customvision-export-samples)
|