struct InferenceEngine::PreProcessChannel

Overview

This structure stores info about pre-processing of network inputs (scale, mean image, …) More…

#include <ie_preprocess.hpp>

struct PreProcessChannel
{
    // typedefs

    typedef std::shared_ptr<PreProcessChannel> Ptr;

    // fields

    float stdScale = 1;
    float meanValue = 0;
    Blob::Ptr meanData;
};

Detailed Documentation

This structure stores info about pre-processing of network inputs (scale, mean image, …)

Typedefs

typedef std::shared_ptr<PreProcessChannel> Ptr

Smart pointer to an instance.

Fields

float stdScale = 1

Scale parameter for a channel.

float meanValue = 0

Mean value for a channel.

Blob::Ptr meanData

Mean data for a channel.