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

InputInfo Class

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)

Definition

Namespace: OpenVinoSharp.preprocess
Assembly: OpenVINO_CSharp_API (in OpenVINO_CSharp_API.dll) Version: 2024.3.0.2+a9617c0f8f80882646d0eba11b88ae6cb17b3fb8
C#
public class InputInfo : IDisposable
Inheritance
Object    InputInfo
Implements
IDisposable

Constructors

InputInfo Default construction through InputInfo pointer.

Properties

Ptr [public]InputInfo class pointer.

Methods

Dispose Release unmanaged resources.
Finalize Default destructor
(Overrides ObjectFinalize)
model Get current input model information with ability to change original model's input data
preprocess Get current input preprocess information with ability to add more preprocessing steps
tensor Get current input tensor information with ability to change specific data

Fields

m_ptr [private]InputInfo class pointer.

See Also