资源简介
基于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 immosaic by sift\appendimages.m
文件 678 2011-01-23 23:34 immosaic by sift\findHomography.m
文件 103647 2011-01-16 22:50 immosaic by sift\hall1.JPG
文件 102984 2011-01-16 22:50 immosaic by sift\hall2.JPG
文件 2395 2012-07-08 16:08 immosaic by sift\imMosaic.m
文件 1334 2011-03-24 11:57 immosaic by sift\license.txt
文件 259 2012-07-08 16:06 immosaic by sift\mosaicTest.m
文件 418 2010-10-24 15:43 immosaic by sift\randIndex.m
文件 1947 2012-07-08 16:09 immosaic by sift\ransac1.m
文件 2344 2011-01-23 22:02 immosaic by sift\sift.m
文件 2373 2011-01-25 15:12 immosaic by sift\siftMatch.m
文件 94208 2005-07-07 21:54 immosaic by sift\siftWin32.exe
文件 586 2012-07-08 16:10 immosaic by sift\solveHomo.m
..A.SH. 9216 2012-07-08 16:14 immosaic by sift\Thumbs.db
文件 141042 2012-07-08 16:12 immosaic by sift\tmp.key
目录 0 2012-07-08 16:05 immosaic by sift
----------- --------- ---------- ----- ----
463892 16
相关资源
- SIFT2844912
- docs
- SIFT2830309
- imgmosaic
- sift sift图像匹配的纯matlab代码
- PG_BOW_DEMO 图像的特征用到了Dense Sift
- SIFT 图像检索中经典的SIFT方法matlab实
- sift----matlab sift算法的完整matlab程序
- imageMosaic 基于Harris角点检测的图像拼
- Sequence-cylindrical-stitching 图像序列柱面
- mosaic 国外网站上找到的一个图像拼接
- demo_ASIFT_Win ASIFT图像特征提取源代码
- harris-match harris角点检测
- bow-sift 实现图片的sift特征的提取
- plot 使用sift+RANSAC完成两幅图像的特征
- 3D_MATCHing_SIFT matlab环境下的三维点云配
- computer_vision_work 自动图像拼接
- imMosaic 基于sift的图像拼接算法
- LBP-SIFT-image-matching-algorithm-combined
- sift 自己实现的sift特征提取的matlab代
- vlfeat-0.9.9
- Wavelet-transform 本程序利用小波变换的
- sift sift特征提取
- surf 改进的sift算法
- sift-match MATLAB工具sift实现图像拼接
- sift
- sift sift算法图像特征提取
-
image-stitch-ba
sed-sift 经过测试的基于 - image-stitching--matlab 改进的图像拼接算
- dense_sift sift特征提取
评论
共有 条评论