MFC显示MAT

3 篇文章 0 订阅

int CMultipleCameraDlg::ShowMat(cv::Mat img, CWnd* hWndDisplay)
{		
	if (img.empty())
		return 0;
	//构造将要显示的Mat版本图片
	RECT rect;	
	::GetClientRect(hWndDisplay->GetSafeHwnd(), &rect);
	cv::Mat imgShow(abs(rect.top - rect.bottom), abs(rect.right - rect.left), CV_8UC1);
	resize(img, imgShow, imgShow.size());
	imwrite("2.jpg", imgShow);
	//在控件上显示要用到的CImage类图片
	ATL::CImage CI;	
	Mat2CImage(imgShow,CI);
	//在控件显示图片
	HDC dc;
	dc = ::GetDC(hWndDisplay->GetSafeHwnd());
	CI.Draw(dc, 0, 0);
	::ReleaseDC(hWndDisplay->GetSafeHwnd(), dc);
	CI.Destroy();
	return 0;
}

void Mat2CImage(Mat & mat, ATL::CImage & cimage)
{
	if (0 == mat.total())
	{
		return;
	}
	int nChannels = mat.channels();
	if ((1 != nChannels) && (3 != nChannels))
	{
		return;
	}
	int nWidth = mat.cols;
	int nHeight = mat.rows;

	cimage.Destroy();
	cimage.Create(nWidth, nHeight, 8 * nChannels);

	uchar *pucRow;
	uchar *pucImage = (uchar*)cimage.GetBits();

	int nStep = cimage.GetPitch();

	if (1 == nChannels)
	{
		RGBQUAD* rgbquadColorTable;
		int nMaxColors = 256;
		rgbquadColorTable = new RGBQUAD[nMaxColors];
		cimage.GetColorTable(0, nMaxColors, rgbquadColorTable);
		for (int nColor = 0; nColor < nMaxColors; nColor++)
		{
			rgbquadColorTable[nColor].rgbBlue = (uchar)nColor;
			rgbquadColorTable[nColor].rgbGreen = (uchar)nColor;
			rgbquadColorTable[nColor].rgbRed = (uchar)nColor;
		}
		cimage.SetColorTable(0, nMaxColors, rgbquadColorTable);
		delete[]rgbquadColorTable;
	}
	for (int nRow = 0; nRow < nHeight; nRow++)
	{
		pucRow = (mat.ptr<uchar>(nRow));
		for (int nCol = 0; nCol < nWidth; nCol++)
		{
			if (1 == nChannels)
			{
				*(pucImage + nRow * nStep + nCol) = pucRow[nCol];
			}
			else if (3 == nChannels)
			{
				for (int nCha = 0; nCha < 3; nCha++)
				{
					*(pucImage + nRow * nStep + nCol * 3 + nCha) = pucRow[nCol * 3 + nCha];
				}
			}
		}
	}
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值