其他分享
首页 > 其他分享> > 将Emgu OpenCV Intptr转换为IplImage?

将Emgu OpenCV Intptr转换为IplImage?

作者:互联网

我正在使用Emgu OpenCV C#包装程序,并且试图转换其函数返回的IntPtr,并访问实际的IplImage OpenCV对象.有任何想法吗?我是C#的新手,所以欢迎提出任何建议.

干杯.

解决方法:

好,找到解决方案,并将其发布在这里-

 IntPtr rgb32; 

 MIplImage rgb32Image = new MIplImage();
 rgb32Image = (MIplImage)Marshal.PtrToStructure(rgb32, typeof(MIplImage));

当然,哪里需要rgb32Image.

标签:emgucv,opencv,casting,c
来源: https://codeday.me/bug/20191208/2092049.html