Hello Classification C Sample

This topic describes how to run the Hello Classification C sample application.

It demonstrates how to use the following Inference Engine C API in applications:

  • Synchronous Infer Request API
  • Input auto-resize API. It allows to set image of the original size as input for a network with other input size. Resize will be performed automatically by the corresponding plugin just before inference.

There is also an API introduced to crop a ROI object and set it as input without additional memory re-allocation. To properly demonstrate this API, it is required to run several networks in pipeline which is out of scope of this sample.

NOTE: By default, Inference Engine samples and demos expect input with BGR channels order. If you trained your model to work with RGB order, you need to manually rearrange the default channels order in the sample or demo application or reconvert your model using the Model Optimizer tool with --reverse_input_channels argument specified. For more information about the argument, refer to When to Reverse Input Channels section of Converting a Model Using General Conversion Parameters.

Running

To run the sample, you can use public or Intel's pre-trained models from the Open Model Zoo. The models can be downloaded using the Model Downloader.

NOTE: Before running the sample with a trained model, make sure the model is converted to the Inference Engine format (*.xml + *.bin) using the Model Optimizer tool.

The sample accepts models in ONNX format (.onnx) that do not require preprocessing.

You can do inference of an image using a trained AlexNet network on a GPU using the following command:

./hello_classification_c <path_to_model>/alexnet_fp32.xml <path_to_image>/cat.bmp GPU

Sample Output

The application outputs top-10 inference results.