Mat imread 与 IplImage cvLoadImage区别

Mat imread 与 IplImage cvLoadImage区别  

原文地址 http://blog.163.com/yuyang_tech/blog/static/21605008320132510104620/

Q : I have two options to load images: 来源1

1- Mat and Imread
2- IplImage and CvLoadImage    
Which one is better to use?

A : They are the two different interfaces (Mat/imread for C++ and Ipl... and Cv.. for C interface). The C++ interface is nicer, safer and easier to use. It automatically handles memory for you, and allows you to write less code for the same task. The OpenCV guys advocate for the usage of C++, unless some very specific project requirements force you to C.

Example (C++)

cv::Mat image = imread("path/to/myimage.jpg") if(image.empty()) return; cv::imshow("Image", image); cv::Mat bw = image > 128; // threshold image cv::Mat crop = image(cv::Rect(0, 0, 100, 100)); // a 100px x 100px crop crop= 0; // set image to 0 cv::waitKey();

Note that if not stated otherwise, all matrix assignments reference the same data. In the example above, the crop matrix points to image, and setting it to zero will set that specific part of the image to 0.

To create a new copy of data, use Mat::copyTo, or Mat::clone();

And the C interface

IplImage* pImg = CvLoadImage("path/to/myimage.jpg"); if(pImg == NULL) return; // ... big bloat to do the same operations with IplImage CvShowImage("Image", pImg); cvWaitKey(); CvReleaseImage(&pImg); // Do not forget to release memory.

另:来源2
1.imread是C++接口,cvloadimage是c接口。
2.imread的定义在highgui.hpp中,cvloadimage的定义在highgui-c.h中,而highgui.hpp和highgui-c.h都包含在highgui.h中,所以我们在写程序是只要包含了highgui.h,那么我们就可以用两个接口。
 
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值