Package org.intel.openvino
Class InputInfo
- java.lang.Object
-
- org.intel.openvino.Wrapper
-
- org.intel.openvino.InputInfo
-
public class InputInfo extends Wrapper
Class holding preprocessing information for one inputFrom preprocessing pipeline perspective, each input can be represented as:
- User's input parameter info (
tensor()) - Preprocessing steps applied to user's input (
preprocess()) - Model's input info, which is a final input's info after preprocessing (
model())
- User's input parameter info (
-
-
Constructor Summary
Constructors Constructor Description InputInfo(long addr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddelete(long nativeObj)InputModelInfomodel()Get current input model information with ability to change original model's input dataPreProcessStepspreprocess()Get current input preprocess information with ability to add more preprocessing stepsInputTensorInfotensor()Get current input tensor information with ability to change specific data-
Methods inherited from class org.intel.openvino.Wrapper
finalize, getNativeObjAddr
-
-
-
-
Method Detail
-
preprocess
public PreProcessSteps preprocess()
Get current input preprocess information with ability to add more preprocessing steps- Returns:
- Reference to current preprocess steps structure
-
tensor
public InputTensorInfo tensor()
Get current input tensor information with ability to change specific data- Returns:
- Reference to current input tensor structure
-
model
public InputModelInfo model()
Get current input model information with ability to change original model's input data- Returns:
- Reference to current model's input information structure
-
-