将 GdiPlus::Bitmap 转换为 OpenCV IplImage

发布于 2024-10-13 00:45:42 字数 101 浏览 2 评论 0原文

我有一个 24bpp GdiPlus::Bitmap ,我需要将其转换为 IplImage (opencv)。 有谁知道如何做到这一点?

I have a 24bpp GdiPlus::Bitmap that i need to convert into IplImage (opencv).
Does anyone know how can this be done?

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

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

发布评论

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

评论(3

浮云落日 2024-10-20 00:45:42

以下是您可以如何做到这一点。

1.) 创建一个新的目标 IplImage 对象,其尺寸为源图像 (GdiPlus::Bitmap)

2.) 使用 lockbits 获取源图像的​​像素数据句柄

3.) 将源像素数据复制到目标图像数据

4.) 源图像的 UnlockBits

Here is how you can do it.

1.) Create a new target IplImage object with the dimensions of Source image (GdiPlus::Bitmap)

2.) Get the pixeldata handle of Source image using lockbits

3.) Copy the source pixeldata to target imagedata

4.) UnlockBits of source image

始于初秋 2024-10-20 00:45:42

这是您问题的答案,唯一的区别是 BitMap 转换为 Mat:将 Bitmap 转换为 Mat

Here is an answer for your issue with the only difference, that BitMap converts to Mat: Convert Bitmap to Mat

弱骨蛰伏 2024-10-20 00:45:42

困难在于 Gdiplus::Bitmap 理论上支持许多奇异的像素格式,因此总的来说,转换会很冗长。但基本情况如下:

IplImage* GdiPlusBitmapToOpenCvImage(Gdiplus::Bitmap* bmp)
{
    auto format = bmp->GetPixelFormat();
    if (format != PixelFormat24bppRGB)
        return nullptr;

    Gdiplus::Rect rcLock(0, 0, bmp->GetWidth(), bmp->GetHeight());
    Gdiplus::BitmapData bmpData;

    bmp->LockBits(&rcLock, Gdiplus::ImageLockModeRead, format, &bmpData);

    int buffSz = bmpData.Stride * bmpData.Height;
    int depth = 8, channel = 3;
    IplImage* cvImage = cvCreateImage(CvSize(rcLock.Width, rcLock.Height), depth, channel);
    const unsigned char* src = static_cast<unsigned char*>(bmpData.Scan0);
    std::copy(src, src + buffSz, cvImage->imageData);

    bmp->UnlockBits(&bmpData);
    return cvImage;
}

The difficulty is that Gdiplus::Bitmap supports lots of exotic pixel formats in theory, so in full generality the conversion would be verbose. However, the basic case is as follows:

IplImage* GdiPlusBitmapToOpenCvImage(Gdiplus::Bitmap* bmp)
{
    auto format = bmp->GetPixelFormat();
    if (format != PixelFormat24bppRGB)
        return nullptr;

    Gdiplus::Rect rcLock(0, 0, bmp->GetWidth(), bmp->GetHeight());
    Gdiplus::BitmapData bmpData;

    bmp->LockBits(&rcLock, Gdiplus::ImageLockModeRead, format, &bmpData);

    int buffSz = bmpData.Stride * bmpData.Height;
    int depth = 8, channel = 3;
    IplImage* cvImage = cvCreateImage(CvSize(rcLock.Width, rcLock.Height), depth, channel);
    const unsigned char* src = static_cast<unsigned char*>(bmpData.Scan0);
    std::copy(src, src + buffSz, cvImage->imageData);

    bmp->UnlockBits(&bmpData);
    return cvImage;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文