
Open CV
文章平均质量分 63
benedict_tao
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
open CV对图像的各类操作
本文章用于记录自己使用open CV过程中的要点,便于遗忘时查看。首先使用using namespace std; using namespace cv;避免每次都需要敲 ::cv及::std;图像的读写显示存取图像定义:Mat image;图像读取:imread(const String & filename,int flags = IMREAD_COLOR); 支持格式有:Win...原创 2018-04-20 09:49:03 · 3124 阅读 · 0 评论 -
Open CV绘图函数
画直线:line(InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness = 1, int lineType = LINE_8, int shift = 0); Parameters img Image. pt1 First point of the line segment....原创 2018-04-11 12:31:28 · 630 阅读 · 0 评论 -
Open CV中Mat类的常用操作
Mat介绍:创建Mat:Mat M1,M2; M1 = imread(filename); M2.creat(ncols, rows, type); Mat M3 = (ncols, nrows, type, value);//value可以是Scalar::all(0)等操作访问Mat像素:动态访问。用 image.at<Vec3b>(i,j)[k]访问像素点(i,j)第k通道的值...原创 2018-04-20 09:49:17 · 1249 阅读 · 0 评论 -
MOSSE跟踪算法源码解析
MOSSE算法源码解析 各子函数作用// This file ispart of the OpenCV project. // It is subject to the license terms in the LICENSEfile found in the top-level directory // of this distribution and athttp://opencv.org...原创 2018-05-24 21:03:17 · 5300 阅读 · 1 评论