如何将 Iplimage 放在图片框上?

发布于 2024-12-25 20:12:20 字数 130 浏览 0 评论 0原文

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

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

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

Is there a way to show an IplImage in a picturebox?

I'd like to not save the image and reload it into the picturebox since I need my program to be fast.

I'm using opencv 2.1 in C++. I'm working with Visual Studio 2008. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九命猫 2025-01-01 20:12:20

此处已经对此进行了讨论:

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);

This was already discussed 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);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文