OpenCV学习
宏之亮
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OpenCV学习篇之一 显示图像
OpenCV+VS开发环境的配置请看浅墨_毛星云编写博客http://blog.youkuaiyun.com/poem_qianmo/article/details/19809337程序功能:从磁盘加载图片并在屏幕上显示程序:原创 2015-02-01 00:55:49 · 8787 阅读 · 0 评论 -
OpenCV学习篇之二 播放视频
程序功能:播放视频和能通过进度条控制视频的播放程序:// learn_playAVI2.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include#include#include#includeusing namespace std;int g_position = 0;CvCapture* g_capture原创 2015-02-01 20:00:40 · 863 阅读 · 0 评论 -
OpenCV学习篇之三 摄像头控制
程序功能:从摄像头中获取图像程序:// learn_cam.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include #include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ IplImage* pFram原创 2015-02-04 01:53:24 · 1538 阅读 · 0 评论 -
OpenCV学习篇之六 遍历图像和邻域操作
程序功能: 对图像进行锐化程序:// learn_sharpen.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp>#include <opencv2/imgproc/imgproc原创 2015-02-13 00:22:58 · 1338 阅读 · 2 评论 -
OpenCV学习篇之五 使用指针遍历图像
程序功能: 对图像进行颜色缩减程序:// learn_colorReduce.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp>using namespace std;void c原创 2015-02-12 20:01:43 · 2298 阅读 · 0 评论 -
OpenCV学习篇之四 存取像素值
程序功能:在图像中入椒盐噪点 程序:// learn_salt.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp>//椒盐噪点void salt(cv::Mat &image,int n){ for(int k原创 2015-02-12 17:42:58 · 1001 阅读 · 0 评论
分享