Mat* imgbuf 如何转为Gdiplus::Bitmap*
时间: 2024-05-11 14:14:12 浏览: 182
使用GDIPlus实现图像格式转换
可以使用Gdiplus::Bitmap::Bitmap()构造函数将Mat转换为Gdiplus::Bitmap。
示例代码如下:
```c++
Mat imgbuf;
// 读取图像到imgbuf
...
// 将Mat转换为Gdiplus::Bitmap
Gdiplus::Bitmap* bmp = new Gdiplus::Bitmap(imgbuf.cols, imgbuf.rows, imgbuf.step1(), PixelFormat24bppRGB, imgbuf.data);
// 使用bmp进行进一步操作
...
// 释放bmp
delete bmp;
```
阅读全文