C++: Normalize Images with Mean and STD in OpenCV
作者:XD / 发表: 2022年6月9日 03:17 / 更新: 2022年6月9日 03:17 / 编程笔记 / 阅读量:1455
C++: Normalize Images with Mean and STD in OpenCV
void preprocess_image(cv::Mat& img)
{
cv::resize(img, img, cv::Size(224, 224));
img.convertTo(img, CV_32FC3);
img /= 255;
img -= cv::Scalar(0.485, 0.456, 0.406);
img /= cv::Scalar(0.229, 0.224, 0.225);
}