JunkWaxHero / onnx /README.md
Eric P. Nusbaum
Initial Commit
db15883

# Custom Vision Export Object Detection Models This model is exported from Custom Vision Service

Please visit our Sample scripts respository.

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