现在在做一个项目:其中有一部分是将存在内存的byte[] 型图像数据保存到自己定义的缓存区。因为后续希望用OpenCV做人脸识别,希望能将byte[] 类型的图片转换成Mat格式,不过C#里MCvMat为这种形式:
public struct MCvMat
{
public int cols;
public IntPtr data;
public int hdr_refcount;
public IntPtr refcount;
public int rows;
public int step;
public int type;
public int height { get; }
public int NumberOfChannels { get; }
public int width { get; }
}