灰度图转RGB(伪彩色图)

灰度图转RGB(伪彩色图)

前言

灰度图可以转化成伪彩色图以显示出更多的细节,简单整理了三种转化的方法,结合openCV通过C++进行了实现。

代码

该函数将二维数组转化为伪彩色图并返回,可通过type参数选择不同的转换方法。

Mat Array2RGB(uchar **arr, int rows, int cols, int type)
{
	//array2gray
	Mat gray(rows, cols, CV_8UC1);
	for (int i = 0; i < rows; i++)
	{
		uchar *p = gray.ptr<uchar>(i);
		for (int j = 0; j < cols; j++)
		{
			*(p + j) = *(*(arr + i) + j);
		}
	}
	//gray2rgb
	/*将灰度图像转换为彩色图像,称为灰度图像的伪彩色处理。
	//伪彩色处理技术的实现方式有很多,如:灰度分割法、灰度级-彩色变换法、滤波法等等。
	*/
	Mat M(gray.rows, gray.cols, CV_8UC3);
	if (type == 0)//灰度级-彩色变换法
	{
		for (int i = 0; i < gray.rows; i++)
		{
			uchar *p = gray.ptr<uchar>(i);
			uchar temp;
			for (int j = 0; j < gray.cols; j++)
			{
				temp = *(p + j);
				if (0 <= temp && temp <= 63)
				{
					M.at<cv::Vec3b>(i, j)[0] = 255;//B
					M.at<cv::Vec3b>(i, j)[1] = 254 - 4 * temp;//G
					M.at<cv::Vec3b>(i, j)[2] = 0;//R
				}
				else if (64 <= temp && temp <= 127)
				{
					M.at<cv::Vec3b>(i, j)[0] = 510 - 4 * temp;//B
					M.at<cv::Vec3b>(i, j)[1] = 4 * temp - 254;//G
					M.at<cv::Vec3b>(i, j)[2] = 0;//R
				}
				else if (128 <= temp && temp <= 191)
				{
					M.at<cv::Vec3b>(i, j)[0] = 0;//B
					M.at<cv::Vec3b>(i, j)[1] = 255;//G
					M.at<cv::Vec3b>(i, j)[2] = 4 * temp - 510;//R
				}
				else if (192 <= temp && temp <= 255)
				{
					M.at<cv::Vec3b>(i, j)[0] = 0;//B
					M.at<cv::Vec3b>(i, j)[1] = 1022 - 4 * temp;//G
					M.at<cv::Vec3b>(i, j)[2] = 255;//R
				}
			}
		}
	}
	else if (type == 1)//gray2pseudocolor
	{
		for (int i = 0; i < gray.rows; i++)
		{
			uchar *p = gray.ptr<uchar>(i);
			uchar grayValue;
			for (int j = 0; j < gray.cols; j++)
			{
				grayValue = *(p + j);
				Vec3b& pixel = M.at<Vec3b>(i, j);
				pixel[0] = abs(255 - grayValue);
				pixel[1] = abs(127 - grayValue);
				pixel[2] = abs(0 - grayValue);
			}
		}
	}
	else//gray2rainbow
	{
		unsigned char grayValue;
		for (int i = 0; i < gray.rows; i++)
		{
			uchar *p = gray.ptr<uchar>(i);
			uchar grayValue;
			for (int j = 0; j < gray.cols; j++)
			{
				grayValue = *(p + j);
				Vec3b& pixel = M.at<Vec3b>(i, j);
				if (grayValue <= 51)
				{
					pixel[0] = 255;
					pixel[1] = grayValue * 5;
					pixel[2] = 0;
				}
				else if (grayValue <= 102)
				{
					grayValue -= 51;
					pixel[0] = 255 - grayValue * 5;
					pixel[1] = 255;
					pixel[2] = 0;
				}
				else if (grayValue <= 153)
				{
					grayValue -= 102;
					pixel[0] = 0;
					pixel[1] = 255;
					pixel[2] = grayValue * 5;
				}
				else if (grayValue <= 204)
				{
					grayValue -= 153;
					pixel[0] = 0;
					pixel[1] = 255 - static_cast<unsigned char>(grayValue * 128.0 / 51 + 0.5);
					pixel[2] = 255;
				}
				else if (grayValue <= 255)
				{
					grayValue -= 204;
					pixel[0] = 0;
					pixel[1] = 127 - static_cast<unsigned char>(grayValue * 127.0 / 51 + 0.5);
					pixel[2] = 255;
				}
			}
		}
	}
	return M;
}
//以上代码可以优化的两个点:
//1.返回值为Mat类型可太吓人了,最好用一个Mat类型的引用做函数形参,返回类型改为void
//2.用at会很慢,最好改为ptr

参考

如下为上述代码的方法参考,个人更喜欢参考1。

参考1: link.
参考2: link.

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值