有没有办法在图片框中显示IplImage?

我不想保存图像并将其重新加载到图片框中,因为我需要我的程序要快。

我在C++中使用opencv 2.1。我正在使用Visual Studio2008。谢谢。

最佳答案

已经讨论过here:

IplImage* img=cvLoadImage("sample.jpg",3); // for example

HDC hdc = picturebox.GetDC()->m_hDC;
char m_chBmpBuf[2048];
BITMAPINFO *m_pBmpInfo =0;
m_pBmpInfo = (BITMAPINFO *)m_chBmpBuf;
m_pBmpInfo->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
m_pBmpInfo->bmiHeader.biWidth = img->width;
m_pBmpInfo->bmiHeader.biHeight = -img->height;
m_pBmpInfo->bmiHeader.biBitCount= 24;

m_pBmpInfo->bmiHeader.biPlanes = 1;
m_pBmpInfo->bmiHeader.biCompression = BI_RGB;
m_pBmpInfo->bmiHeader.biSizeImage = 0;
m_pBmpInfo->bmiHeader.biXPelsPerMeter = 0;
m_pBmpInfo->bmiHeader.biYPelsPerMeter = 0;
m_pBmpInfo->bmiHeader.biClrUsed = 0;
m_pBmpInfo->bmiHeader.biClrImportant = 0;

StretchDIBits(hdc, 0, 0, img->width, img->height,
                   0, 0, img->width, img->height,
                   img->imageData, m_pBmpInfo,
                   DIB_RGB_COLORS, SRCCOPY);

关于c++ - 如何在图片框上放置一个Iplimage?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8805386/

10-10 18:28