Converting cv::Mat to IplImage*

前端 未结 8 1129
庸人自扰
庸人自扰 2020-11-28 22:51

The documentation on this seems incredibly spotty.

I\'ve basically got an empty array of IplImage*s (IplImage** imageArray) and I\'m calling a function to import an

8条回答
  •  感动是毒
    2020-11-28 23:17

    Here is the recent fix for dlib users link

    cv::Mat img = ...
    IplImage iplImage = cvIplImage(img);
    

提交回复
热议问题