openvino.inference_engine.InputInfoPtr¶
-
class
openvino.inference_engine.
InputInfoPtr
¶ This class contains information about each input of the network
-
__init__
()¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
Attributes
Get access to DataPtr object
Layout of this input
Name of this input
Precision of this input
Gets pre-process info for the input
tensor_desc
-
input_data
¶ Get access to DataPtr object
-
layout
¶ Layout of this input
-
name
¶ Name of this input
-
precision
¶ Precision of this input
-
preprocess_info
¶ Gets pre-process info for the input
Usage example:
net = ie_core.read_network(model=path_to_xml_file, weights=path_to_bin_file) net.input_info['data'].preprocess_info.color_format = ColorFormat.BGR
-