赞
踩
coInvert.norm(src);
void ColorInvert::norm(Mat& image) {
Mat dst;
cout << image.type() << endl;
image.convertTo(image, CV_32F);
cout << dst.type() << endl;
normalize(image, dst, 1.0, 0, NORM_MINMAX);
cout << dst.type() << endl;
imshow("图像数据归一化", dst);
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。