为什么要把CV_8UC3(Vec3b)无符号整型转换成CV_32F(Vec3F)32位浮点数据类型?(在高精度下处理)

Posted Dontla

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么要把CV_8UC3(Vec3b)无符号整型转换成CV_32F(Vec3F)32位浮点数据类型?(在高精度下处理)相关的知识,希望对你有一定的参考价值。

因为用CV_32F做处理精度较高,后面显示最终还得转换回cv_8UC3

示例:提高图像对比度(rgb和灰度都已实现)

#include <opencv2/opencv.hpp>
#include <iostream>

using namespace cv;
using namespace std;

int main(int argc, const char* argv[]) 

	Mat src, dst;

	//src = imread("./test.jpg");
	src = imread("./test.jpg", IMREAD_GRAYSCALE);

	//cvtColor(src, src, COLOR_BGR2GRAY);

	//if (src.empty()) 
	if (!src.data) 
		printf("could not load image...\\n");
		return -1;
	
	namedWindow("input img");	//默认自动窗口大小
	imshow("input img", src);

	Mat m1;
	src.convertTo(m1, CV_32F);
	//src.convertTo(dst, CV_32F, 1 / 255.0);

	int height = src.rows;
	int width = src.cols;
	int sc = src.channels();
	dst = Mat::zeros(src.size(), src.type());

	float alpha = 1.8;
	float beta = -50;

	for (int row = 0; row < height; row++)
	
		for (int col = 0; col < width; col++)
		
			for (int c = 0; c < 3; c++)	//三个通道
			
				if (sc == 3) 
					float b = m1.at<Vec3f>(row, col)[0];	//34.0000000
					float g = m1.at<Vec3f>(row, col)[1];	//14.0000000
					float r = m1.at<Vec3f>(row, col)[2];

					dst.at<Vec3b>(row, col)[0] = saturate_cast<uchar>(b * alpha + beta);
					dst.at<Vec3b>(row, col)[1] = saturate_cast<uchar>(g * alpha + beta);
					dst.at<Vec3b>(row, col)[2] = saturate_cast<uchar>(r * alpha + beta);
				
				else if (sc == 1) 
					float v = m1.at<float>(row, col);
					dst.at<uchar>(row, col) = saturate_cast<uchar>(v * alpha + beta);
				
			
		
	
	imshow("output img", dst);

	waitKey(0);
	return 0;


VS编译运行:


参考文章:opencv用浮点数记录像素值的意义何在,用8UC3不就可以了吗? - William Wu的回答 - 知乎

以上是关于为什么要把CV_8UC3(Vec3b)无符号整型转换成CV_32F(Vec3F)32位浮点数据类型?(在高精度下处理)的主要内容,如果未能解决你的问题,请参考以下文章

OpenCV学习OpenCV中CV_8UC3等宏定义的含义

如何在 OpenCV 中设置指向 Mat 变量内容的指针

什么是 CV_8UC3,SCALAR_BLACK);? [复制]

无 8 位系统上的 CV_8U opencv 矩阵

CV_8UC1,CV_8UC2,CV_8UC3等意思

[0] CV Notes - 琐碎