opencv 学习日志
Posted amazingym
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencv 学习日志相关的知识,希望对你有一定的参考价值。
1.图片读取
http://blog.csdn.net/hujingshuang/article/details/47184717
include <iostream> #include <opencv2/highgui/highgui.hpp> using namespace cv; using namespace std; int main() { //①老版 IplImage *pic = cvLoadImage("lena.jpg", 1); cvShowImage("load", pic); cvWaitKey(0); //②新版 Mat img = imread("lena.jpg"); imshow("read", img); waitKey(0); return 0; }
以上是关于opencv 学习日志的主要内容,如果未能解决你的问题,请参考以下文章