Class NormalizePad

Inheritance Relationships

Base Type

Class Documentation

class NormalizePad : public mindspore::dataset::TensorTransform

Normalize the input image with respect to mean and standard deviation and pads an extra channel with value zero.

Public Functions

inline NormalizePad(const std::vector<float> &mean, const std::vector<float> &std, const std::string &dtype = "float32")

Constructor.

Parameters
  • mean[in] A vector of mean values for each channel, with respect to channel order. The mean values must be in range [0.0, 255.0].

  • std[in] A vector of standard deviations for each channel, with respect to channel order. The standard deviation values must be in range (0.0, 255.0].

  • dtype[in] The output datatype of Tensor. The standard deviation values must be “float32” or “float16”(default = “float32”).

~NormalizePad() = default

Destructor.