资源简介
MATLAB工具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];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-08-13 19:14 sift-match\
文件 461 2005-07-07 21:54 sift-match\appendimages.m
文件 605 2011-03-14 09:56 sift-match\bounds.m
文件 37906 2011-05-10 20:51 sift-match\coins.png
文件 91408 2011-05-31 19:56 sift-match\feiji1.png
文件 103745 2011-05-31 19:46 sift-match\feiji2.png
文件 1546 2011-06-09 11:25 sift-match\har.m
文件 5046 2011-05-31 23:32 sift-match\harris_improve.m
文件 1007 2010-04-16 19:55 sift-match\hnormalise.m
文件 778 2010-05-04 15:07 sift-match\homogdist2d.m
文件 2493 2010-04-16 19:55 sift-match\homography2d.m
文件 879 2011-05-31 21:25 sift-match\homoTrans.m
文件 3801 2010-05-19 21:52 sift-match\imTrans.m
文件 2318 2010-04-16 19:55 sift-match\iscolinear.m
文件 815 2010-05-04 15:08 sift-match\isdegenerate.m
文件 12390 2011-05-22 13:33 sift-match\kuaicoins.png
文件 256 2011-05-31 22:16 sift-match\main.m
文件 244 2011-05-31 21:54 sift-match\maincai.m
文件 4664 2011-06-01 00:13 sift-match\match.m
文件 3455 2011-06-09 11:26 sift-match\match12.m
文件 2312 2010-04-16 19:55 sift-match\normalise.m
文件 2361 2010-04-16 19:55 sift-match\normalise2dpts.m
文件 184318 2011-05-31 09:43 sift-match\pin1.jpg
文件 160703 2011-05-31 09:46 sift-match\pin2.jpg
文件 629 2011-06-02 16:07 sift-match\qqq.m
文件 2218 2010-04-16 19:55 sift-match\randomsample.m
文件 9877 2011-05-31 21:19 sift-match\ransac.m
文件 3451 2011-05-31 21:15 sift-match\ransacfithomographys.m
文件 1699 2011-05-31 20:54 sift-match\showkeys.m
文件 2489 2011-05-31 21:54 sift-match\sift.m
文件 94208 2005-07-07 21:54 sift-match\siftWin32.exe
............此处省略1个文件信息
相关资源
- HMMforspeechrecogntion 一个可执行的HMM语音
- popular-UCI-datasets 一些非常有用的数据
- GAPSO 这个算法是遗传算法和粒子群优
- synchronization 利用matlab仿真实现载波的
- Gabor Gabor小波变换的matlab实现
- 4 matlab区域填充的具体算法及演示
- MATLAB_image_process_with_PDE 运用偏微分方
- gabijiao 该程序通过实例(函数)
- SIFT2844912
- gbvs 二维图像视觉显著性检测
- wenli 分析了纹理特征提取方法
- EELM
- barcode 基于图像的条形码识别程序(识
-
myaudiopla
yer 使用Matlab GUI实现的音频 - B-spline-surface 在MATLAB-2008a环境下编写的
- NURBS-surface 在MATLAB-2008a环境下编写的
- ACO 用MATLAB编写的蚁群算法最短路径寻
- wavplay 基于matlab GUI界面的播放器
- allfns 是由牛津大学VGG开发的三维重建
- spectrogram_fft
- adaboost 基于adaboost的人脸识别程序
- 2 2课程报告要求:按照讲课内容
- gps GPS信号的捕获、处理程序
- fuzzynetme 模糊神经网络的MATLAB程序
- naive_bayes_numeric 利用matlab实现的朴素贝
- MFandMPF 计算肌电信号积分肌电值
- BM3D BM3D去噪算法的实现和相关文档
- BarrelDistortion 两个matlab程序
- Kalman 用卡尔曼滤波跟踪目标实例
- susancorners
评论
共有 条评论