C++opencv图片(mat)传入C#bitmap图片

C++将OpenCV的图片传入主要是将图片信息放入uchar数组中,C#再使用byte数组读取信息,生成图片。

RGB图片传入方法:

C++部分程序

cpp 复制代码
extern "C" __declspec(dllexport) void MatToHobject(int& width, int& height, uchar * array)
{
    Mat matTemp;
 
    //依次将rgb数据放入uchar数组中	
    for (int i = 0; i < matTemp.rows; i++) {
	    for (int j = 0; j < matTemp.cols; j++) {
		    for (int k = 0; k < 3; k++) {
			array[i * matTemp.cols * 3 + j * 3 + k] = matTemp.at<cv::Vec3b>(i, j)[k];
		    }
	    }
    }
 
    //将图片的宽高传出
    width = matTemp.cols;
    height = matTemp.rows;
    
}

C#部分程序

cs 复制代码
//C#调用C++程序
[DllImport("Dll1.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern void MatToHobject(ref int width, ref int height, ref byte array);
 
cs 复制代码
public Bitmap BitmapGenerateMask(int width, int height, byte[] maskArray)
{
    try
    {
        //生成maks图片
        Bitmap maskBmp = null;
        // 创建Bitmap对象
        using (Bitmap bitmap = new Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format24bppRgb))
        {
            Rectangle rect = new Rectangle(0, 0, width, height);
            // 锁定Bitmap区域以便进行写入
            BitmapData bmpData = bitmap.LockBits(rect, System.Drawing.Imaging.ImageLockMode.WriteOnly, bitmap.PixelFormat);
            int stride = bmpData.Stride; // 获取stride值

            // 遍历每一行并根据stride调整
            for (int y = 0; y < height; y++)
            {
                // 计算源和目标的起始位置
                IntPtr destPtr = (IntPtr)((long)bmpData.Scan0 + y * stride);
                int sourceIndex = y * width * 3; // 对于24bppRgb格式,每像素3字节

                // 将当前行的数据复制到bitmap
                Marshal.Copy(maskArray, sourceIndex, destPtr, width * 3); // 每行的字节数
            }

            //复制数据到新的Bitmap
            maskBmp = bitmap.Clone(new System.Drawing.RectangleF(new PointF(0, 0), new SizeF(bitmap.Width, bitmap.Height)), bitmap.PixelFormat);
            // 解锁Bitmap区域
            bitmap.UnlockBits(bmpData);
        }

        return maskBmp;
    }
    catch (Exception ex)
    {
        UIMessageBox.ShowError("绘制maks图异常" + ex.ToString());
        return null;
    }
}
相关推荐
小成202303202654 小时前
Linux高级02
linux·开发语言
知行合一。。。4 小时前
Python--04--数据容器(总结)
开发语言·python
咸鱼2.04 小时前
【java入门到放弃】需要背诵
java·开发语言
ZK_H4 小时前
嵌入式c语言——关键字其6
c语言·开发语言·计算机网络·面试·职场和发展
澈2075 小时前
深入浅出C++滑动窗口算法:原理、实现与实战应用详解
数据结构·c++·算法
A.A呐5 小时前
【C++第二十九章】IO流
开发语言·c++
椰猫子5 小时前
Java:异常(exception)
java·开发语言
lifewange5 小时前
pytest-类中测试方法、多文件批量执行
开发语言·python·pytest
ambition202425 小时前
从暴力搜索到理论最优:一道任务调度问题的完整算法演进历程
c语言·数据结构·c++·算法·贪心算法·深度优先
cmpxr_5 小时前
【C】原码和补码以及环形坐标取模算法
c语言·开发语言·算法