cv::Mat与IplImage 的相互转换
摘要:
From IplImage or CvMat to cv::Mat:from definition of cv::Mat// converts old-style CvMat to the new matrix; the data is not copied bydefaultMat(const CvMat* m, bool copyData=false);// converts old-style IplImage to the new matrix; the data is not copied bydefaultMat(const IplImage* img, bool copyData 阅读全文
posted @ 2012-10-11 17:01 龖龖 阅读(2758) 评论(0) 推荐(0) 编辑