实验记录
- 继续实验Hu矩,在昨天的基础之上,提取Hu矩前,加入边缘检测。尝试各种边缘检测,canny, sobel等;
- 检测边缘,计算边缘图像Hu矩
- 对每个d,计算边缘图像Hu矩
- 比较两个Hu矩大小,取最相似的Hu矩对应的d作为深度
- 进行传统立体匹配,匹配程度较低的(方差大于一定阈值),记为不可信的区域
- 将不可信的区域的深度图替换为利用Hu矩计算出的深度
- 实验结果:
- 原因分析:
- 立体匹配:可信度计算不准确,无法准确识别被遮挡的区域
- Hu矩计算:无法清晰判断匹配程度
文章
Generating object segmentation proposals using global and local search
-
过程:
- 过分割,采用SLIC以及FH
- 提取特征,采用SIFT和RGB颜色
- 合并相邻过分割区域
- Global过程:MRF建模,以Superpixel为节点,采用Graph-cut求解
-
可以借鉴的:
- 过分割方法
- MRF,Graph-cut的matlab代码
- 合并区域的准则以及能量函数的建立
资源:VLFeat
- 介绍:The VLFeat open source library implements popular computer vision algorithms including HOG, SIFT, MSER, k-means, hierarchical k-means, agglomerative information bottleneck, SLIC superpixels, and quick shift. It is written in C for efficiency and compatibility, with interfaces in MATLAB for ease of use, and detailed documentation throughout. It supports Windows, Mac OS X, and Linux. The latest version of VLFeat is .
- 评价:有matlab接口,方便安装,需要琢磨一下
- 网址:http://www.vlfeat.org/
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。