资源简介
改进的图像拼接算法,基于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 15:15 image stitching matlab\appendimages.m
文件 188166 2013-03-18 16:51 image stitching matlab\data\1.jpg
文件 114262 2013-03-18 11:18 image stitching matlab\data\11.JPG
文件 141800 2013-03-18 11:18 image stitching matlab\data\111.JPG
文件 115111 2013-03-18 17:01 image stitching matlab\data\11a.jpg
文件 99828 2013-03-18 17:01 image stitching matlab\data\11b.jpg
文件 155626 2013-03-18 16:51 image stitching matlab\data\2.jpg
文件 107618 2013-03-18 11:18 image stitching matlab\data\22.JPG
文件 143888 2013-03-18 11:18 image stitching matlab\data\222.JPG
文件 150249 2013-03-18 16:51 image stitching matlab\data\3.jpg
文件 109241 2013-03-18 11:18 image stitching matlab\data\33.JPG
文件 145395 2013-03-18 11:18 image stitching matlab\data\333.JPG
文件 135021 2013-03-18 16:52 image stitching matlab\data\4.jpg
文件 69128 2013-03-18 20:00 image stitching matlab\data\44a.jpg
文件 113337 2013-03-18 17:03 image stitching matlab\data\44b.jpg
文件 139707 2013-03-18 16:52 image stitching matlab\data\5.jpg
文件 181033 2009-11-05 13:09 image stitching matlab\data\a.jpg
文件 88630 2013-03-19 09:24 image stitching matlab\data\a1.jpg
文件 98301 2013-03-19 09:24 image stitching matlab\data\a2.jpg
文件 180911 2009-11-05 13:09 image stitching matlab\data\b.jpg
文件 39837 2013-03-19 09:25 image stitching matlab\data\b1.jpg
文件 57421 2013-03-19 09:25 image stitching matlab\data\b2.jpg
文件 14521 2013-03-15 19:50 image stitching matlab\data\bb.jpg
文件 177405 2009-11-05 13:08 image stitching matlab\data\c.jpg
文件 59553 2013-03-19 09:25 image stitching matlab\data\c1.jpg
文件 66652 2013-03-19 09:25 image stitching matlab\data\c2.jpg
文件 31566 2013-03-19 09:25 image stitching matlab\data\d1.jpg
文件 39120 2013-03-19 09:26 image stitching matlab\data\d2.jpg
文件 69455 2007-02-26 22:39 image stitching matlab\data\keble_a.jpg
文件 69819 2007-02-26 22:39 image stitching matlab\data\keble_b.jpg
............此处省略26个文件信息
- 上一篇:dense_sift sift特征提取
- 下一篇:lrr(motion_face)
相关资源
- 基于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实现源码及帮助文档
- SIFT matlab实现源码
评论
共有 条评论