OPENCV
边写边学呗
算法工程师的杂记,少打酱油,多找方法,每天都有新收获!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OpenCV例程2 how to scan images
This program shows how to scan image obiects in OpenCV(CV::Mat). we take an inout image and divide the native color palette(255) with the input. Show C operator[] method, itertors and at function f原创 2013-08-23 17:19:25 · 666 阅读 · 0 评论 -
OpenCV例程1 Display image
Display images: 程序如下所示: int main() { string imagename="lena.jpg"; Mat img=imread(imagename);//讀入圖像 if(img.empty()) { cout return -1; } namedWindow("image",1);//創建窗口 imshow(原创 2013-08-23 17:04:22 · 765 阅读 · 0 评论
分享