学习OPENCV(二):操作像素
摘要:
本文主要参考了<OpenCV 2 Computer Vision Application Programming Cookbook>和<The OpenCV Reference Manual>。首先讨论了几个基本的结构:cv::Mat,cv::Mat_;随后讨论了遍历图像的两种方式:Pointer和Iterators,以及速度优化的注意点。1 cv::Mat cv::Mat是一个n维矩阵类,声明在<opencv2/core/core.hpp>中。class CV_EXPORTS Mat{public: //a lot of methods …/*! incl 阅读全文
posted @ 2013-04-06 21:14 zjgtan 阅读(31325) 评论(3) 推荐(3) 编辑