资源简介
很基础的matlab版本的基于sift算法的图像拼接代码

代码片段和文件信息
% 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 2011-01-25 20:15 appendimages.m
文件 678 2011-01-24 04:34 findHomography.m
文件 103647 2011-01-17 03:50 hall1.JPG
文件 102984 2011-01-17 03:50 hall2.JPG
文件 2391 2011-03-25 03:44 imMosaic.m
文件 1334 2011-03-24 15:57 license.txt
文件 256 2011-03-25 03:50 mosaicTest.m
文件 50481 2011-01-25 20:06 mosaic_hall.jpg
文件 418 2010-10-24 19:43 randIndex.m
文件 1945 2011-01-24 04:33 ransac1.m
文件 2344 2011-01-24 03:02 sift.m
文件 2373 2011-01-25 20:12 siftMatch.m
文件 94208 2005-07-08 01:54 siftWin32.exe
文件 584 2011-01-24 02:38 solveHomo.m
- 上一篇:USRP N210 快速频谱监测MATLAB仿真
- 下一篇:均值漂移目标跟踪算法
相关资源
- 图像匹配matlab源程序sift算法
- 基于sift特征的人民币识别matlab版
- siftmatlab算法实现
- 基于sift算法的图像拼接286803
- matlab实现sift算法匹配
- 非常好用的matlab图像拼接程序
- SIFT特征匹配 MATLAB 实现
- sift matlab代码
- MATLAB SIFT 代码
- sift特征的Matlab提取
- 基于SURF特征点的图像拼接算法
- SIFT算法的Matlab实现201985
- SIFT MATLAB实现(代码+文档)至今最容
- 基于乘积量化的快速特征匹配
- MATLAB小波变换图像拼接技术GUI版.zip
- 三种sift的matlab代码
- Matlab实现SIFT三幅图像拼接
- 全景图像拼接代码MATLAB版本
- MATLAB 程序 实现图像拼接,自动匹配特
- 多幅图像拼接matlab实现
- 一种针对车载全景系统的图像拼接算
- 基于灰度匹配算法的简单拼接-matlab
- SIFT程序实现
- 基于matlab的图像拼接含matlab代码以及
- matlab实现sift算法的图像拼接
- SIFT算法的MATLAB 代码,可直接运行
- sift特征检测的matlab程序实现
- matlab sift特征提取
- 改良的SIFT算法的Matlab代码
- SIFT算子MatLab实现源码及帮助文档
评论
共有 条评论