上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页
逻辑矩阵,找出元素1并记录其位置索引。 Read More
posted @ 2016-10-11 23:34 suonikeyinsu Views(315) Comments(0) Diggs(0) Edit
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 8 using namespace cv; 9 using namespace std; 10 11 int main(int argc, char** argv) 12 { 13 Mat srcIm... Read More
posted @ 2016-10-11 23:06 suonikeyinsu Views(389) Comments(0) Diggs(0) Edit
Mat::clone Creates a full copy of the array and the underlying data. The method creates a full copy of the array. The original step[] is not taken int Read More
posted @ 2016-10-11 09:12 suonikeyinsu Views(299) Comments(0) Diggs(0) Edit
Provides matrix assignment operators. m – Assigned, right-hand-side matrix. Matrix assignment is an O(1) operation. This means that no data is copied Read More
posted @ 2016-10-11 09:10 suonikeyinsu Views(686) Comments(0) Diggs(0) Edit
源码路径:~/opencv-2.4.9/modules/core/include/opencv2/core/core.hpp where _InputArray is a class that can be constructed from Mat, Mat_<T>, Matx<T, m, n>,  Read More
posted @ 2016-10-10 23:51 suonikeyinsu Views(1410) Comments(0) Diggs(0) Edit
头文件路径:opencv-2.4.9/modules/core/include/opencv2/core/core.hpp 一、Point类 在这些数据类型中,最简单的就是Point点类,Point类是一个包含两个整形数据成员x和y的以及一些简单成员方法的类类型,和它有关的好几个Point点类的变种 Read More
posted @ 2016-10-09 21:07 suonikeyinsu Views(3127) Comments(0) Diggs(0) Edit
bwlabel是用来标记二维的二值图像中的连通组的,简言之,就是黑背景下面有多少白的块,也就是从黑背景甄别白块块的。 L = bwlabel(BW, n) returns a matrix L, of the same size as BW, containing labels for the co Read More
posted @ 2016-10-09 09:26 suonikeyinsu Views(352) Comments(0) Diggs(0) Edit
zc 折叠,只折叠最外层的折叠; zC 对所在范围内的所有嵌套的折叠点进行折叠,包括嵌套的所有折叠; zo 展开折叠,只展开最外层的折叠; zO 对所在范围内所有嵌套的折叠点展开,包括嵌套折叠; [z 到当前打开的折叠的开始处; ]z 到当前打开的折叠的结束处; zj 向下移动。到达下一个折叠的开始 Read More
posted @ 2016-10-02 09:59 suonikeyinsu Views(242) Comments(0) Diggs(0) Edit
:g/^\s*$/d :g 代表在全文档范围内 ^代表行的开始 \s*代表空白字符 $代表行的结束 d代表删除 Read More
posted @ 2016-10-02 09:49 suonikeyinsu Views(93) Comments(0) Diggs(0) Edit
opencv主要模块介绍: 【calib3d】——其实就是就是Calibration(校准)加3D这两个词的组合缩写。这个模块主要是相机校准和三维重建相关的内容。基本的多视角几何算法,单个立体摄像头标定,物体姿态估计,立体相似性算法,3D信息的重建等等。【contrib】——也就是Contribut Read More
posted @ 2016-09-30 17:33 suonikeyinsu Views(1180) Comments(0) Diggs(1) Edit
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页