从 IplImage* 到 cv::MAT 的转换

2021-12-10 00:00:00 opencv c++ iplimage mat

我搜索将 IplImage* 转换为 Mat,但所有答案都是关于转换为 cvMat.

I searched to convert an IplImage* to Mat, but all answers were about the conversion to cvMat.

我能怎么做?Mat 和 cvMat 有什么区别?

How, can I do it? and what is the difference between Mat and cvMat?

提前致谢

推荐答案

这里有一个很好的解决方案

here is a good solution

Mat(const IplImage* img, bool copyData=false);

相关文章