- 博客(4)
- 收藏
- 关注
原创 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
5278
1
原创 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
1234
原创 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
3072
原创 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
613
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人