Azure-Samples / cognitive-services-onnx-customvision-sample

Real time image classification Windows-ML using a ONNX model exported from Custom Vision Service.
MIT License
15 stars 21 forks source link

page_type: sample languages:

ONNX models exported from Custom Vision Service

Warning

This repository is no longer maintained. Please visit Azure-Samples/customvision-export-samples

This sample application demonstrates how to take a model exported from the Custom Vision Service in the ONNX format and add it to an application for real-time image classification.

Getting Started

Prerequisites

Quickstart

  1. Clone the repository and open the project in Visual Studio
  2. Build and run the sample Application
  3. Application comes with two models already included along with sample images to test

    Adding your own sample model of your own classifier.

    The models provided with the sample recognizes some foods (Cheesecake, Donuts, Fries) and the other recognizes some plankton images. To add your own model exported from the Custom Vision Service do the following, and then build and launch the application:

    1. Create and train a classifer with the Custom Vision Service. You must choose a "compact" domain such as General (compact) to be able to export your classifier. If you have an existing classifier you want to export instead, convert the domain in "settings" by clicking on the gear icon at the top right. In setting, choose a "compact" model, Save, and Train your project.
    2. Export your model by going to the Performance tab. Select an iteration trained with a compact domain, an "Export" button will appear. Click on Export then ONNX then Export. Click the Download button when it appears. A *.onnx file will download.
    3. Drop your *model.onnx file into your project's Assets folder.
    4. Under Solutions Explorer/ Assets Folder add model file to project by selecting Add Existing Item.
    5. Change properties of model just added: "Build Action" -> "Content" and "Copy to Output Directory" -> "Copy if newer".
    6. In the MainPage.xaml.cs file set the "_ourOnnxFileName" constant to the name of the model just added.
    7. Build and run.
    8. Click button to select image to evaluate.

Things to note.

Resources