namespace ov::preprocess

Overview

namespace preprocess {

// enums

enum ColorFormat;
enum ResizeAlgorithm;

// classes

class InputInfo;
class InputModelInfo;
class InputTensorInfo;
class OutputInfo;
class OutputModelInfo;
class OutputTensorInfo;
class PostProcessSteps;
class PrePostProcessor;
class PreProcessSteps;
class TensorInfoMemoryType;

// global functions

OPENVINO_API std::ostream& operator << (
    std::ostream& str,
    const PrePostProcessor& prePostProcessor
    );

} // namespace preprocess

Detailed Documentation

Global Functions

OPENVINO_API std::ostream& operator << (
    std::ostream& str,
    const PrePostProcessor& prePostProcessor
    )

Inserts a human-readable representation of a PrePostProcessors into an output stream. The output to the stream is in “informal” notation and can be used for debugging purposes.

Parameters:

str

The output stream targeted for insertion.

prePostProcessor

The shape to be inserted into output stream.

Returns:

A reference to same output stream after insertion.