Please use. NET 5,. NET 6, NET 7,. NET 8, NET Framework 4.6, NET Framework 4.61, NET Framework 4.7, NET Framework 4.72, NET Framework 4.8, NET Framework 4.81, and. NET Core 3.1 versions

OpenVinoSharp.preprocess Namespace

Mainly defined the data processing methods in OpenVINO. OpenVinoSharp.preprocess.

Classes

InputInfo Class holding preprocessing information for one input From preprocessing pipeline perspective, each input can be represented as: - User's input parameter info (InputInfo::tensor) - Preprocessing steps applied to user's input (InputInfo::preprocess) - Model's input info, which is a final input's info after preprocessing (InputInfo::model)
InputModelInfo Information about model's input tensor. If all information is already included to loaded model, this info may not be needed. However it can be set to specify additional information about model, like 'layout'.
InputTensorInfo Information about user's input tensor. By default, it will be initialized to same data (type/shape/etc) as model's input parameter. User application can override particular parameters (like 'element_type') according to application's data and specify appropriate conversions in pre-processing steps
OutputInfo Class holding postprocessing information for one output From postprocessing pipeline perspective, each output can be represented as: - Model's output info, (OutputInfo::model) - Postprocessing steps applied to user's input (OutputInfo::postprocess) - User's desired output parameter information, which is a final one after preprocessing (OutputInfo::tensor)
OutputTensorInfo Information about user's desired output tensor. By default, it will be initialized to same data (type/shape/etc) as model's output parameter. User application can override particular parameters (like 'element_type') according to application's data and specify appropriate conversions in post-processing steps
PrePostProcessor Main class for adding pre- and post- processing steps to existing ov::Model
PreProcessSteps Preprocessing steps. Each step typically intends adding of some operation to input parameter User application can specify sequence of preprocessing steps in a builder-like manner

Enumerations

ColorFormat This enum contains enumerations for color format.
ResizeAlgorithm This enum contains codes for all preprocess resize algorithm.