上一页 1 2 3 4 5 6 ··· 8 下一页
该文被密码保护。 阅读全文
posted @ 2014-11-06 21:39 老姨 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2014-11-06 20:25 老姨 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2014-11-06 15:01 老姨 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2014-11-05 17:10 老姨 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 包括函数createTrackbar、getTrackbarPos、setTrackbarPos、imshow、namedWindow、destroyWindow、destroyAllWindows、MoveWindow、ResizeWindow、SetMouseCallback、waitKey。这些函数保证了图像的基本处理、tarckbar的控制和鼠标键盘的响应 读写图像视频的函数:图像... 阅读全文
posted @ 2014-11-04 21:25 老姨 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 图像特征的类型通常指边界、角点(兴趣点)、斑点(兴趣区域)。角点就是图像的一个局部特征,应用广泛。harris角点检测是一种直接基于灰度图像的角点提取算法,稳定性高,尤其对L型角点检测精度高,但由于采用了高斯滤波,运算速度相对较慢,角点信息有丢失和位置偏移的现象,而且角点提取有聚簇现象。 Use the FeatureDetector interface in order ... 阅读全文
posted @ 2014-11-03 16:18 老姨 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 新版本对直方图不再使用之前的histogram的形式,而是用统一的Mat或者MatND的格式来存储直方图,可见新版本Mat数据结构的优势。 C++: void calcHist(const Mat* images, int nimages, const int* channels, InputArray mask, OutputArray hist, intdims, const int* ... 阅读全文
posted @ 2014-11-03 11:21 老姨 阅读(588) 评论(0) 推荐(0) 编辑
摘要: 2D图像滤波器基础类BaseFilter:dst(x,y) = F(src(x,y), src(x+1,y)... src(x+wdith-1,y), src(y+1,x)... src(x+width-1, y+height-1) ); 相关的调用函数为getLinearFilter、getMorphologyFilter 单行核滤波器基础类BaseRowFilte... 阅读全文
posted @ 2014-11-03 09:27 老姨 阅读(621) 评论(0) 推荐(0) 编辑
摘要: XML\YAML文件在OpenCV中的数据结构为FileStorage string filename = "I.xml"; FileStorage fs(filename, FileStorage::WRITE); \\... fs.open(filename, FileStorage::READ); fs.release(); 写入文... 阅读全文
posted @ 2014-10-31 20:19 老姨 阅读(343) 评论(0) 推荐(0) 编辑
摘要: Mat OpenCV C++ n-dimensional dense array class The class Mat represents an n-dimensional dense numerical single-channel or multi-channel array. It can be used to store real or complex-valued ve... 阅读全文
posted @ 2014-10-29 09:06 老姨 阅读(254) 评论(0) 推荐(0) 编辑
摘要: DataType A primitive OpenCV data type is one of unsigned char, bool,signed char, unsigned short, signed short, int, float, double, or a tuple of values of one of these types, where all the values ... 阅读全文
posted @ 2014-10-28 21:03 老姨 阅读(293) 评论(0) 推荐(0) 编辑
摘要: VS 程序的默认路径是源码所在路径(所以图片应该放在此处),而不是Debug路径 OpenCV 模块结构: core——定义了基本数据结构,包括最重要的Mat和一些其他的模块 imgproc——该模块包括了线性和非线性的图像滤波,图像的几何变换,颜色空间转换,直方图处理等等 video——该模块包括运动估计,背景分离,对象跟踪 calib3d——基本的多视角几... 阅读全文
posted @ 2014-10-28 19:58 老姨 阅读(199) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2014-10-05 19:58 老姨 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 一、特征提取Feature Extraction:· SIFT [1] [Demo program][SIFT Library] [VLFeat]· PCA-SIFT [2] [Project]· Affine-SIFT [3] [Project]· SURF [4] [OpenSURF] [Mat... 阅读全文
posted @ 2014-10-03 15:47 老姨 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 引入Recently SVMs using spatial pyramid matching (SPM) kernel have been highly successful in image classification. Despite its popularity, these nonline... 阅读全文
posted @ 2014-10-03 10:28 老姨 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 为啥会有SPM→ScSPM呢?原因之一是为了寻找better coding + better pooling的方式提高性能,原因之二就是提高速度。如何提高速度?这里的速度,不是Coding+Pooling的速度,而是分类器的速度。SPM设计的是一个Linear feature,在文章中作者用于实验则... 阅读全文
posted @ 2014-10-02 19:23 老姨 阅读(842) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/jwh_bupt/article/details/9625469SPM 全称是Spatial Pyramid Matching,出现的背景是bag of visual words模型被大量地用在了Image representation中,但是BOVW... 阅读全文
posted @ 2014-10-02 17:06 老姨 阅读(574) 评论(0) 推荐(0) 编辑
摘要: convolutionFirst, we want to compute σ(Wx(r,c) + b) for all valid (r,c) (valid meaning that the entire 8x8 patch is contained within the image; this i... 阅读全文
posted @ 2014-09-28 16:34 老姨 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 转自:http://deeplearning.net/tutorial/rbm.htmlhttp://blog.csdn.net/mytestmy/article/details/9150213能量函数一个事物有相应的稳态,如在一个碗内的小球会停留在碗底,即使受到扰动偏离了碗底,在扰动消失后,它会回... 阅读全文
posted @ 2014-09-22 10:39 老姨 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/xianlingmao/article/details/7768833引入我们会遇到很多问题无法用分析的方法来求得精确解,例如由于式子特别,真的解不出来。这时就需要找一种方法求其近似解,并且有手段能测量出这种解的近似程度 (比如渐进性,上下限什么的)随... 阅读全文
posted @ 2014-09-21 16:40 老姨 阅读(3007) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页