资源简介
基本算法,亲测可用
代码片段和文件信息
% 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];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-12-03 21:26 3.3图像拼接技术\
文件 461 2011-01-25 15:15 3.3图像拼接技术\appendimages.m
文件 678 2011-01-23 23:34 3.3图像拼接技术\findHomography.m
文件 103647 2011-01-16 22:50 3.3图像拼接技术\hall1.JPG
文件 102984 2011-01-16 22:50 3.3图像拼接技术\hall2.JPG
文件 2391 2011-03-24 23:44 3.3图像拼接技术\imMosaic.m
文件 1334 2011-03-24 11:57 3.3图像拼接技术\license.txt
文件 254 2012-09-26 16:47 3.3图像拼接技术\mosaicTest.m
文件 49199 2012-09-26 16:48 3.3图像拼接技术\mosaic_a.jpg
文件 50481 2011-01-25 15:06 3.3图像拼接技术\mosaic_hall.jpg
文件 418 2010-10-24 15:43 3.3图像拼接技术\randIndex.m
文件 1945 2011-01-23 23:33 3.3图像拼接技术\ransac1.m
文件 2346 2012-09-26 16:48 3.3图像拼接技术\sift.m
文件 2373 2011-01-25 15:12 3.3图像拼接技术\siftMatch.m
文件 94208 2005-07-07 21:54 3.3图像拼接技术\siftWin32.exe
文件 584 2011-01-23 21:38 3.3图像拼接技术\solveHomo.m
文件 141042 2012-09-26 16:48 3.3图像拼接技术\tmp.key
文件 24064 2011-12-03 21:26 3.3图像拼接技术\程序运行说明.doc
- 上一篇:航班数据库
- 下一篇:数值迭代算法及其Matlab
相关资源
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 《MATLAB 智能算法超级学习手册》-程序
- 读取txt文件内容matlab代码实现
- 算术编码解码matlab源代码
- OFDM系统MATLAB仿真代码
- 图像小波变换MatLab源代码
- 细胞图像分割matlab代码
- 基于MP的时频分析MATLAB代码
- 工程优化问题的Matlab实现代码
- WCDMA matlab代码
- 数字图像处理radon matlab变换算法代码
- 数字信号处理 理论算法与实现 胡广书
- 激光谐振腔课程设计(matlab)exe及源
- 基于harris算法的角点检测matlab原代码
- 北邮Matlab实验报告和代码
- 图像降噪Matlab代码
- matlab人脸识别和特征提取
- 圣诞树(matlab代码)
- 心音信号处理分析(附matlab代码)
- Pattern Recognition and Machine Learning(高清
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- 多目标跟踪 论文+代码
- 欧拉放大论文及matlab代码
- 蚁群算法论文+源代码
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- matlab读取SP3文件
- 手把手教你学DSP--基于TMS320C55x光盘 含
评论
共有 条评论