资源简介
基于sift的图像拼接算法,使用matlab实现
代码片段和文件信息
% 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];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 103647 2011-01-16 22:50 imMosaic\a1.JPG
文件 102984 2011-01-16 22:50 imMosaic\a2.JPG
文件 461 2011-01-25 15:15 imMosaic\appendimages.m
文件 678 2011-01-23 23:34 imMosaic\findHomography.m
文件 2393 2011-05-16 20:20 imMosaic\imMosaic.m
文件 1334 2011-03-24 11:57 imMosaic\license.txt
文件 256 2011-03-24 23:50 imMosaic\mosaicTest.m
文件 49202 2011-05-16 20:22 imMosaic\mosaic_a.jpg
文件 50481 2011-01-25 15:06 imMosaic\mosaic_hall.jpg
文件 418 2010-10-24 15:43 imMosaic\randIndex.m
文件 1946 2011-05-16 20:21 imMosaic\ransac1.m
文件 2344 2011-01-23 22:02 imMosaic\sift.m
文件 2373 2011-01-25 15:12 imMosaic\siftMatch.m
文件 94208 2005-07-07 21:54 imMosaic\siftWin32.exe
文件 585 2011-05-16 20:21 imMosaic\solveHomo.m
文件 141042 2011-05-16 20:21 imMosaic\tmp.key
目录 0 2011-05-16 20:22 imMosaic
----------- --------- ---------- ----- ----
554352 17
相关资源
- LBP 纹理模式的LBP特征表示及分类原理
- MATLAB_image_process_with_PDE 运用偏微分方
- gbvs 二维图像视觉显著性检测
- wenli 分析了纹理特征提取方法
- barcode 基于图像的条形码识别程序(识
- mean_shift_segmentation mean shift图像分割软
- fuliye 3. 对图像进行傅里叶逆变换
- ridgelet_transform 一个用于图像描述表示
- 数字图像处理matlab版源码
- romp 图像处理
- Wavelet_OMP
- ONEzj
- PCA_SVM 此方法采用经典的PCA对人脸图像
- JPEGJsteg Jpeg_Or 为jpeg密写的原始图像的
- fusion_change_detection SAR图像变化检测代
- imagefusion2836201
- multiimagepocs 对多帧图像进行超分辨率
- chapter9 图像分割
- Gabor Gabor滤波器
- ImageSegmentation 多尺度分水岭变换分割
- gradient
- TVMMcode 国外一个博士写的图像复原的
- lena 灰图像三级小波分解
- pca 主成分分析程序
- huffman huffman编码用于图像的压缩和解
- edge_detection 利用小波边缘检测算法实
- Max_CCM 用于图像配准
- frft 离散分数傅里叶
- SIFT2830309
- imgmosaic
评论
共有 条评论