自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (11)
  • 问答 (1)
  • 收藏
  • 关注

转载 matlab图像处理小结

转自http://blog.sina.com.cn/s/blog_a4034b2801013q5t.htmlmatlab 图像分割算法源码1.图像反转MATLAB程序实现如下:I=imread('xian.bmp');J=double(I);J=-J+(256-1); %图像反转线性变换H=uint8(J);subplot(1,2,1),imshow(I);

2013-06-28 20:07:55 1623

转载 opencv 学习第四天 学习opencv(中文版) 总结一下opencv的图像视频的简单应用

此文转载自http://lubobill1990.blog.163.com/blog/static/36930386201010653632341/IplImage* cvCreateImage(CvSize size,int depth,int channels); 创建一幅图像 IplImage* cvCloneImage(IplImage*); 复制一幅图像 void

2013-06-28 16:58:03 1029

原创 opencv 学习第四天 学习opencv(中文版) alpha融合

如果我还年轻但是却怀揣着一颗成熟的心做着老人干的事情,还要个毛青春干啥。。。。。。。。。。。#include #include #include using namespace std;using namespace cv;void main(){ IplImage *img1,*img2; img1 = cvLoadImage("d:\\2.png"); img2 = cv

2013-06-28 16:38:32 1338

转载 opencv 学习第三天 学习opencv(中文版) ROI

#include #include#include #include using namespace std;using namespace cv;void main(){ IplImage *img = cvLoadImage("C:\\1.jpg"); cvNamedWindow("example",CV_WINDOW_AUTOSIZE); cvShowImage("exa

2013-06-27 17:19:19 1673

转载 opencv 学习第三天 学习opencv(中文版) cvmat矩阵的操作

本文转自http://blog.csdn.net/bealives/article/details/5873602,尊重别人在OpenCV中有三种方式访问矩阵中的数据元素:容易的方式,困难的方式,以及正确的方式。以下先讲容易的方式和困难的方式。容易的方式最容易的方式是使用宏CV_MAT_ELEM( matrix, elemtype, row, col ),输入参数是矩阵的指针,矩阵

2013-06-27 16:15:58 941

原创 opencv 学习第二天 学习opencv(中文版)画一个图像

#include #include#include #define w 400using namespace std;using namespace cv;void MyEllipse(Mat image,double angle){ int thickness = 2; int linetype = 8; ellipse(image,Point(w/2.0,w/2.0),

2013-06-26 16:57:18 893

原创 opencv 学习第二天 学习opencv(中文版)将一个视频读入后以灰度方式输出

#include #include#include using namespace std;using namespace cv;void main(){ CvCapture *cap = 0; cap = cvCreateFileCapture("D:\\highway.avi"); if(!cap) cout<<"cannot open the video file"<<

2013-06-26 15:55:05 1173

原创 opencv 学习第二天 学习opencv(中文版)对一幅图片进行canny边缘检测

#include #include #include using namespace std;using namespace cv;IplImage *dopyrDown(IplImage *in,int filter = IPL_GAUSSIAN_5x5){ //assert(in->width%2 == 0 && in->height%2 == 0);//一个断言要求图像的长宽是

2013-06-26 11:05:12 1580

原创 opencv 学习第二天 学习opencv(中文版)对一幅图片进行高斯平滑并缩小一半

#include #include using namespace std;using namespace cv;IplImage *dopyrDown(IplImage *in,int filter = IPL_GAUSSIAN_5x5){ assert(in->width%2 == 0 && in->height%2 == 0); IplImage *out = cvCreate

2013-06-26 10:04:22 1661

原创 opencv 学习第二天 学习opencv(中文版)对一幅图片进行高斯平滑

#include #include using namespace std;using namespace cv;void main(){ IplImage *image = cvLoadImage("D:\\1.png"); cvNamedWindow("example4-in"); cvNamedWindow("example4-out"); cvShowImage("exa

2013-06-26 09:17:07 919

原创 opencv 学习第一天 学习opencv(中文版)中思考题 解决滚动条随视频播放而动

#include #include #include using namespace cv;using namespace std;int g_slider_position = 0;int n = 0;CvCapture *g_cap = nullptr;void onTrackbarslide(int pos){ if (cvGetTrackbarPos("positi

2013-06-25 21:09:33 786

原创 opencv 学习第一天 学习opencv(中文版)创建一个类似滚动条

#include #include #include using namespace cv;using namespace std;int g_slider_position = 0;CvCapture *g_cap = nullptr;void onTrackbarslide(int pos){ cvSetCaptureProperty(g_cap,CV_CAP_PROP_PO

2013-06-25 19:53:36 773

原创 opencv 学习第一天 如何打开一个视频

#include #include using namespace cv;using namespace std;void main(){ cvNamedWindow("example2",CV_WINDOW_AUTOSIZE); CvCapture *cap = cvCreateFileCapture("D:\\output1.mp4"); IplImage *frame; i

2013-06-25 19:28:11 1909

原创 opencv 学习第一天 学习opencv(中文版)第一个程序 打开一个图像

从今天开始争取将 学习opencv(中文版)这本书上的程序都实现一遍#include using namespace cv;void main(){ Mat img = imread("C:\\1.jpg",WINDOW_AUTOSIZE); cvNamedWindow("first program"); imshow("first program",img); waitKey(0

2013-06-25 17:06:11 1339

原创 opencv 学习第一天 如何标定图片的特征点

经过了很多天的学习以及看别人的blog发现自己简直就是弱爆了,但是我相信假以时日必成传奇我的一个问题,就是看到了现在的paper我很难明白,什么叫做特征点虽然我也知道,在内存中那些就是一个矩阵不过到现在还是不能明白,我把一副图像的特征点标记了出来我想把存在vector的值打印出来,但是我发现for_each办不到,因为我不知道其中的存放数据的格式是啥,郁闷代码如下#includ

2013-06-25 16:44:23 2415

计算机视觉中的数学方法

计算机视觉中的数学方法;本书由射影几何、矩阵与张量、模型估计三个部分组成,它们是三维计算机视觉所涉及到 的基本数学理论与方法。

2015-03-24

ICP经典算法

libpointmatcher-master

2015-03-24

vary2.0 3Dmax

vray2.0_sp1_for_3dmax2012chinese-english32bit

2015-03-24

sensor PCL

Sensor-Win-OpenSource32-5.1.0+PCL+VS2010+win764

2015-03-24

OpenNI-Win32-1.5.4-Dev

PCL库的必须安装的三个部分,我的配置是vs2010+win7+这三个搞定

2015-03-24

Boost学习指南

非常好的一个库,强烈建议加到C++的标准中,基本上和opencv等等那些库一样好用

2014-04-14

windows程序编程

windows程序设计,想成为编程高手的话多看这个方面的书籍有助于提高

2013-05-06

C++实现的小闹钟功能

通过c++实现简单的C++闹钟功能,不是特别好但是可以用

2013-05-06

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除