openvino.preprocess.PostProcessSteps¶
- class openvino.preprocess.PostProcessSteps¶
Bases:
pybind11_builtins.pybind11_object
openvino.runtime.preprocess.PostprocessSteps wraps ov::preprocess::PostProcessSteps
- __init__(*args, **kwargs)¶
Methods
__delattr__
(name, /)Implement delattr(self, name).
__dir__
()Default dir() implementation.
__eq__
(value, /)Return self==value.
__format__
(format_spec, /)Default object formatter.
__ge__
(value, /)Return self>=value.
__getattribute__
(name, /)Return getattr(self, name).
__gt__
(value, /)Return self>value.
__hash__
()Return hash(self).
__init__
(*args, **kwargs)This method is called when a class is subclassed.
__le__
(value, /)Return self<=value.
__lt__
(value, /)Return self<value.
__ne__
(value, /)Return self!=value.
__new__
(**kwargs)Helper for pickle.
__reduce_ex__
(protocol, /)Helper for pickle.
__repr__
()Return repr(self).
__setattr__
(name, value, /)Implement setattr(self, name, value).
Size of object in memory, in bytes.
__str__
()Return str(self).
Abstract classes can override this to customize issubclass().
convert_element_type
(self[, type])Converts tensor element type to specified type.
convert_layout
(*args, **kwargs)Overloaded function.
custom
(self, operation)Adds custom postprocessing operation.
- __class__¶
alias of
pybind11_builtins.pybind11_type
- __delattr__(name, /)¶
Implement delattr(self, name).
- __dir__()¶
Default dir() implementation.
- __eq__(value, /)¶
Return self==value.
- __format__(format_spec, /)¶
Default object formatter.
- __ge__(value, /)¶
Return self>=value.
- __getattribute__(name, /)¶
Return getattr(self, name).
- __gt__(value, /)¶
Return self>value.
- __hash__()¶
Return hash(self).
- __init__(*args, **kwargs)¶
- __init_subclass__()¶
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- __le__(value, /)¶
Return self<=value.
- __lt__(value, /)¶
Return self<value.
- __ne__(value, /)¶
Return self!=value.
- __new__(**kwargs)¶
- __reduce__()¶
Helper for pickle.
- __reduce_ex__(protocol, /)¶
Helper for pickle.
- __repr__()¶
Return repr(self).
- __setattr__(name, value, /)¶
Implement setattr(self, name, value).
- __sizeof__()¶
Size of object in memory, in bytes.
- __str__()¶
Return str(self).
- __subclasshook__()¶
Abstract classes can override this to customize issubclass().
This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).
- convert_element_type(self: openvino._pyopenvino.preprocess.PostProcessSteps, type: openvino._pyopenvino.Type = openvino.runtime.Type.undefined) openvino._pyopenvino.preprocess.PostProcessSteps ¶
Converts tensor element type to specified type. Tensor must have openvino.Type data type.
- Parameters
type (openvino.runtime.Type) – Destination type. If not specified, type will be taken from model output’s element type.
- Returns
Reference to itself to allow chaining of calls in client’s code in a builder-like manner.
- Return type
openvino.runtime.preprocess.PostProcessSteps
- convert_layout(*args, **kwargs)¶
Overloaded function.
convert_layout(self: openvino._pyopenvino.preprocess.PostProcessSteps, dst_layout: openvino._pyopenvino.Layout) -> openvino._pyopenvino.preprocess.PostProcessSteps
convert_layout(self: openvino._pyopenvino.preprocess.PostProcessSteps, dims: List[int]) -> openvino._pyopenvino.preprocess.PostProcessSteps
- custom(self: openvino._pyopenvino.preprocess.PostProcessSteps, operation: function) openvino._pyopenvino.preprocess.PostProcessSteps ¶
Adds custom postprocessing operation.
- Parameters
operation (function) – Python’s function which takes openvino.runtime.Output as input argument and returns`openvino.runtime.Output`.
- Returns
Reference to itself, allows chaining of calls in client’s code in a builder-like manner.
- Return type
openvino.runtime.preprocess.PreProcessSteps