资源简介
很基础的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仿真
- 下一篇:均值漂移目标跟踪算法
相关资源
- sift特征点检测及图像拼接
- 傅里叶梅林图像拼接MATLAB
- 基于harris角点特征提取的matlab图像拼
- PCA-SIFT 源代码 matlab
- matlab图像拼接
- 基于SIFT算法的图像拼接 matlab代码
- 经典SIFT特征点提取MATLAB代码
- matlab实现sift提取特征点
- 图像最佳缝合线拼接算法 Matlab源代码
- sift+ransac图像拼接matlab代码
- 基于SIFT特征的图像配准之仿真图像
- 基于SIFT特征的图像配准MATLAB代码
- 尺度空间sift算法
- 基于sift算法的图像拼接
- SIFT PCA资料和代码
- image-forgery-with-siftand-ransac
- SIFT算法的图像拼接
- SIFT特征匹配matlab版.rar
- SIFT+RANSAC图像配准matlab代码,投影变换
- 基于SIFT和SURF的遥感图像配准matlab代码
- SIFT算法MATLAB源码
- matlab的SIFT算法程序
- 图像SURF特征提取(SURF extraction)
- sift 图像拼接
- sift幅图像拼接的程序
- matlab实现多幅图像拼接
- sift sift 特征提取算法matlab实现
- SIFT2844912
- docs
- SIFT2830309
评论
共有 条评论