opencv
文章平均质量分 81
kengluer9495
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
(学习opencv二刷) 第三章 滑动条事件和按钮事件
1、滑动条事件#include"stdafx.h" #include<iostream> #include<opencv2\opencv.hpp> using namespace std; using namespace cv; static Mat mSrcImg; //函数声明 void onChange(int position, void *userdata);...原创 2018-02-02 22:46:47 · 237 阅读 · 0 评论 -
学习opencv(二刷)前第三章知识点
1.访问矩阵元素的三种方法#include "stdafx.h" #include <opencv2/opencv.hpp> #include "highgui/highgui.hpp" #include<iostream> using namespace std; using namespace cv; int main() { cv::Mat mSrcImg =...原创 2018-01-29 22:44:29 · 238 阅读 · 0 评论 -
(学习opencv二刷)简单绘图
/*******************************************************************************Copyright (c) 2017-2018, Hangzhou UNV Technologies Co., Ltd. All rights reserved. -------------------------------------...原创 2018-02-10 21:30:17 · 251 阅读 · 0 评论 -
(学习opencv二刷)视频滚动条
课后习题4:/******************************************************************************* Copyright (c) 2017-2018, Hangzhou all rights reserved. -------------------------------------------------------...原创 2018-02-09 20:36:41 · 234 阅读 · 0 评论 -
(学习opencv二刷)按键控制图像变换
课后7题#include <cv.h> #include <highgui.h> #include "math.h" int main(int argc, char* argv[]) { IplImage *src_image = cvLoadImage("timg2.jpg"); assert(src_image != NULL); /************...原创 2018-02-12 23:05:02 · 816 阅读 · 0 评论 -
(学习opencv二刷)漫水填充算法
int floodFill(InputOutputArray image, InputOutputArray mask, Point seedPoint,Scalar newVal, Rect* rect=0, Scalar loDiff=Scalar(), Scalar upDiff=Scalar(), int flags=4 ) 第一个参数,InputOutputArray类型的imag...原创 2018-02-13 21:57:41 · 308 阅读 · 0 评论 -
(学习opencv二刷) 形态学算法处理
腐蚀,膨胀,开闭操作 #include"stdafx.h" #include <opencv2/opencv.hpp> #include <opencv2/imgproc/imgproc.hpp> using namespace std; using namespace cv; int main() { Mat mSrc1 = imread("t...原创 2018-02-13 23:05:08 · 373 阅读 · 0 评论
分享