我想将 openCV Mat 文件转换为 GDI+ BitMap 图像。我找不到有关如何执行此操作的任何信息?
我认为没有直接的方法可以做到这一点,但我希望它不涉及将其写入文件并读回(http://opencv-users.1802565.n2.nabble.com/Convert-IplImage-to -位图-td3784378.html )
我需要写这样的东西:
#include <windows.h>
#include <gdiplus.h>
#include <stdio.h>
using namespace Gdiplus;
Bitmap GetBitMap(cv::Mat inputImage)
{
Bitmap bitmap;
// convert inputImage to bitmap??
return bitmap;
}