资源简介
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 appendimages.m
文件 678 2011-01-23 23:34 findHomography.m
文件 103647 2011-01-16 22:50 hall1.JPG
文件 102984 2011-01-16 22:50 hall2.JPG
文件 2353 2011-01-25 14:51 imMosaic.m
文件 246 2011-01-27 14:14 mosaicTest.m
文件 50481 2011-01-25 15:06 mosaic_hall.jpg
文件 418 2010-10-24 15:43 randIndex.m
文件 1945 2011-01-23 23:33 ransac1.m
文件 2344 2011-01-23 22:02 sift.m
文件 2373 2011-01-25 15:12 siftMatch.m
文件 94208 2005-07-07 21:54 siftWin32.exe
文件 584 2011-01-23 21:38 solveHomo.m
文件 158157 2011-01-16 23:25 基于特征点的全自动无缝图像拼接方法.pdf
文件 461 2011-01-25 15:15 图片拼接\appendimages.m
文件 678 2011-01-23 23:34 图片拼接\findHomography.m
文件 103647 2011-01-16 22:50 图片拼接\hall1.JPG
文件 102984 2011-01-16 22:50 图片拼接\hall2.JPG
文件 2565 2013-12-30 21:59 图片拼接\imMosaic.m
文件 775 2013-12-30 21:58 图片拼接\mosaicTest.m
文件 124918 2013-12-30 21:45 图片拼接\mosaictt.jpg
文件 50481 2011-01-25 15:06 图片拼接\mosaic_hall.jpg
文件 418 2010-10-24 15:43 图片拼接\randIndex.m
文件 1945 2011-01-23 23:33 图片拼接\ransac1.m
文件 2362 2013-12-23 19:28 图片拼接\sift.m
文件 2373 2011-01-25 15:12 图片拼接\siftMatch.m
文件 94208 2005-07-07 21:54 图片拼接\siftWin32.exe
文件 584 2011-01-23 21:38 图片拼接\solveHomo.m
文件 588116 2013-12-30 21:45 图片拼接\tmp.key
文件 158157 2011-01-16 23:25 图片拼接\基于特征点的全自动无缝图像拼接方法.pdf
文件 1990 2013-12-13 22:53 图片拼接\新建 文本文档.txt
............此处省略2个文件信息
- 上一篇:intercell_interference
- 下一篇:dcsk差分混沌相移键控
相关资源
- sift幅图像拼接的程序
- matlab实现多幅图像拼接
- sift sift 特征提取算法matlab实现
- SIFT2844912
- MosaicKit(matlab) 把两幅有相互重叠部
- docs
- SIFT2830309
- imgmosaic
- sift sift图像匹配的纯matlab代码
- image-stitching 实验两张图片的拼接
- 0301 图像配准和拼接
- 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角点检测
- matlab 传统上
- bow-sift 实现图片的sift特征的提取
-
SURF-ba
sed-image-stitching SURF算法作为新 - 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 本程序利用小波变换的
评论
共有 条评论