资源简介
sift特征点提取代码和对两幅图像提取特征点后进行特征点匹配,可用于图像拼接等。c和matlab代码都有

代码片段和文件信息
% im = appendimages(image1 image2)
%
% Return a new image that appends the two images side-by-side.
function im = appendimages(image1 image2)
% Select the image with the fewest rows and fill in enough empty rows
% to make it the same height as the other image.
rows1 = size(image11);
rows2 = size(image21);
if (rows1 < rows2)
image1(rows21) = 0;
else
image2(rows11) = 0;
end
% Now append both images side-by-side.
im = [image1 image2];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 461 2005-07-07 21:54 sift-match\appendimages.m
文件 46433 2005-07-07 21:54 sift-match\basmati.pgm
文件 97697 2005-07-07 21:54 sift-match\book.pgm
文件 72310 2005-07-07 21:54 sift-match\box.pgm
文件 1920 2005-07-07 21:54 sift-match\defs.h
文件 1055 2005-07-07 21:54 sift-match\LICENSE
文件 631 2005-07-07 21:54 sift-match\Makefile
文件 4876 2005-07-07 21:54 sift-match\match.c
文件 1940 2005-07-07 21:54 sift-match\match.m
文件 7952 2005-07-07 21:54 sift-match\README
文件 196623 2005-07-07 21:54 sift-match\scene.pgm
文件 1699 2005-07-07 21:54 sift-match\showkeys.m
文件 45070 2005-07-07 21:54 sift-match\sift
文件 2494 2005-07-07 21:54 sift-match\sift.m
文件 94208 2005-07-07 21:54 sift-match\siftWin32.exe
文件 7493 2005-07-07 21:54 sift-match\util.c
目录 0 2009-06-17 22:41 sift-match
----------- --------- ---------- ----- ----
582862 17
- 上一篇:HBMA算法和EMBA算法
- 下一篇:haar小波的分解与 重构
相关资源
- 图像匹配matlab源程序sift算法
- 基于MATLAB的图像特征点匹配和筛选
- 基于sift特征的人民币识别matlab版
- siftmatlab算法实现
- 基于sift算法的图像拼接286803
- matlab实现sift算法匹配
- SIFT特征匹配 MATLAB 实现
- sift matlab代码
- MATLAB SIFT 代码
- sift特征的Matlab提取
- SIFT算法的Matlab实现201985
- SIFT MATLAB实现(代码+文档)至今最容
- 基于乘积量化的快速特征匹配
- 三种sift的matlab代码
- Matlab实现SIFT三幅图像拼接
- SIFT程序实现
- matlab实现sift算法的图像拼接
- SIFT算法的MATLAB 代码,可直接运行
- sift特征检测的matlab程序实现
- matlab sift特征提取
- 改良的SIFT算法的Matlab代码
- SIFT算子MatLab实现源码及帮助文档
- SIFT matlab实现源码
- matlab实现的sift的图像拼接
- SIFT特征最经典的paper中文和英文总结
- SIFT tutorial(matlab版本的sift源码和详细
- SIFT复制粘贴篡改检测
- 基于sift和SVM算法实现的手势识别 MA
- 基于SIFT的超分辨率图像配准及MATLAB实
- sift图片拼接matlab
评论
共有 条评论