随笔分类 -  计算机视觉

摘要:识别算法概述:SIFT/SURF基于灰度图,一、首先建立图像金字塔,形成三维的图像空间,通过Hessian矩阵获取每一层的局部极大值,然后进行在极值点周围26个点进行NMS,从而得到粗略的特征点,再使用二次插值法得到精确特征点所在的层(尺度),即完成了尺度不变。 二、在特征点选取一个与尺度相应的邻域... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(8116) 评论(0) 推荐(0)
摘要:Surf(Speed Up Robust Feature)Surf算法的原理 1.构建Hessian矩阵构造高斯金字塔尺度空间其实surf构造的金字塔图像... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(2622) 评论(0) 推荐(0)
摘要:ORB算法ORB是是ORiented Brief的简称。ORB的描述在下面文章中:Ethan Rublee and Vincent Rabaud and Kurt Konolige and Gary Bradski, ORB: an efcient alternative to SI... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(7918) 评论(0) 推荐(0)
摘要:image算法测试iteratoralgorithmfeatures原创文章,转载请注明出处:http://blog.csdn.net/crzy_sparrow/article/details/7391511文章目录:一、Harris角点检测基本理论二、opencv代码实现三、改进的Harris角... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(384) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/sleepwalker/p/3676600.html?utm_source=tuicoolhttp://blog.csdn.net/carson2005/article/details/9502053 Retinex理论Retinex理论始于Lan... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(279) 评论(0) 推荐(0)
摘要:今天听说很多同志们写毕业论文重复率过高的问题,大牛说用图片代替字就行了,我就想用OpenCV实现一下看看能不能搞,果不其然还是可以的!!!主要的难点在于普通格式的图片背景不透明,需要使用背景透明的png格式图片就行。 主要思想和步骤: 1.首先配置好FreeType与Ope... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(499) 评论(0) 推荐(0)
摘要:一直找不到opencv stereo matching的根据和原理出处,下面这个文章贴了个链接,有时间看看: Basically OpenCV provides 2 methods to calculate a dense disparity map:cvFindStereoCorrespond... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(365) 评论(0) 推荐(0)
摘要:论文下载地址:http://research.microsoft.com/en-us/um/people/jiansun/papers/GuidedFilter_ECCV10.pdf本文主要介绍导向滤波,但是在网上看这算法还能去雾,不知道是具体是怎么利用导向滤波实现去雾的,希望过来人指点迷津,这块... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(556) 评论(0) 推荐(0)
摘要:转载请注明出处:http://blog.csdn.net/wangyaninglm/article/details/44151213,来自:shiter编写程序的艺术 1.绪论图切割算法是组合图论的经典算法之一。近年来,许多学者将其应用到图像和视频分割中,取得了很好的效果。本文简单介绍了图切算法和交... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(607) 评论(0) 推荐(0)
摘要:1.FAST(featuresfrom accelerated segment test)算法 http://blog.csdn.net/yang_xian521/article/details/7411438 特征点检测和匹配是计算机视觉中一个很有用的技术。在物体检测,视觉跟踪,三维常年关键等领域... 阅读全文
posted @ 2017-11-17 22:28 wangyaning 阅读(8526) 评论(0) 推荐(0)
摘要:image算法测试iteratoralgorithmfeatures原创文章,转载请注明出处:http://blog.csdn.net/crzy_sparrow/article/details/7391511文章目录:一、Harris角点检测基本理论二、opencv代码实现三、改进的Harris角... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(3050) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/sleepwalker/p/3676600.html?utm_source=tuicoolhttp://blog.csdn.net/carson2005/article/details/9502053 Retinex理论Retinex理论始于Lan... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(6512) 评论(2) 推荐(1)
摘要:vs2010中调用openMP,并添加头文件#include 代码来源:作者:gnuhpc出处:http://www.cnblogs.com/gnuhpc/ #include "stdafx.h"#include "cv.h" #include "highgui.h" #include #inc... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(2168) 评论(0) 推荐(0)
摘要:Graph Cut and Its Application in Computer Vision 原文出处:http://lincccc.blogspot.tw/2011/04/graph-cut-and-its-application-in.html现在好像需要代理才能访问了。。。 网络流算法最... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(171) 评论(0) 推荐(0)
摘要:代码,有参考别人的代码// haha_mirror.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include#include "cv.h"#include "highgui.h"#include "math.h"#include "opencv2/core/... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(1266) 评论(0) 推荐(0)
摘要:原文出处:http://lincccc.blogspot.tw/2011/03/cuda-cuts-fast-graph-cuts-on-gpu_03.html现在需要代理才能访问,所以就转载了。 [论文笔记] CUDA Cuts: Fast Graph Cuts on the GPUPape... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(403) 评论(0) 推荐(0)
摘要:转载请注明出处:http://blog.csdn.net/wangyaninglm/article/details/44151213,来自:shiter编写程序的艺术 1.绪论图切割算法是组合图论的经典算法之一。近年来,许多学者将其应用到图像和视频分割中,取得了很好的效果。本文简单介绍了图切算法和交... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(18213) 评论(0) 推荐(2)
摘要:1.FAST(featuresfrom accelerated segment test)算法 http://blog.csdn.net/yang_xian521/article/details/7411438 特征点检测和匹配是计算机视觉中一个很有用的技术。在物体检测,视觉跟踪,三维常年关键等领域... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(561) 评论(0) 推荐(0)