资源简介
拼接算法(SIFT).rar
代码片段和文件信息
% 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 2005-07-07 21:54 SIFT(横-调-有用)\appendimages.m
文件 17807 2010-05-08 11:50 SIFT(横-调-有用)\b1.jpg
文件 19748 2010-05-08 11:51 SIFT(横-调-有用)\b2.jpg
文件 19181 2010-05-08 11:53 SIFT(横-调-有用)\b3.jpg
文件 605 2011-03-14 09:56 SIFT(横-调-有用)\bounds.m
文件 99364 2017-04-24 13:29 SIFT(横-调-有用)\c1.jpg
文件 104377 2017-04-24 13:31 SIFT(横-调-有用)\c2.jpg
文件 294822 2017-04-24 13:10 SIFT(横-调-有用)\d1.bmp
文件 294822 2017-04-24 13:08 SIFT(横-调-有用)\d2.bmp
文件 8152 2017-04-13 14:33 SIFT(横-调-有用)\Debug\match.obj
文件 213077 2017-04-13 14:33 SIFT(横-调-有用)\Debug\util.exe
文件 214756 2017-04-13 14:33 SIFT(横-调-有用)\Debug\util.ilk
文件 13556 2017-04-13 14:33 SIFT(横-调-有用)\Debug\util.obj
文件 210964 2017-04-13 14:33 SIFT(横-调-有用)\Debug\util.pch
文件 410624 2017-04-13 14:33 SIFT(横-调-有用)\Debug\util.pdb
文件 33792 2017-04-13 14:35 SIFT(横-调-有用)\Debug\vc60.idb
文件 53248 2017-04-13 14:33 SIFT(横-调-有用)\Debug\vc60.pdb
文件 1920 2005-07-07 21:54 SIFT(横-调-有用)\defs.h
文件 201 2017-04-24 13:12 SIFT(横-调-有用)\exam.m
文件 203 2010-05-17 22:18 SIFT(横-调-有用)\exam1.asv
文件 2781 2017-04-20 15:39 SIFT(横-调-有用)\features_detection.m
文件 5536 2017-04-24 12:48 SIFT(横-调-有用)\features_matching.m
文件 1007 2010-04-16 19:55 SIFT(横-调-有用)\hnormalise.m
文件 807 2017-04-18 19:56 SIFT(横-调-有用)\homogdist2d.m
文件 2524 2017-04-18 19:57 SIFT(横-调-有用)\homography2d.m
文件 879 2011-03-14 09:40 SIFT(横-调-有用)\homoTrans.m
文件 3819 2017-04-18 20:09 SIFT(横-调-有用)\imTrans.m
文件 2318 2010-04-16 19:55 SIFT(横-调-有用)\iscolinear.m
文件 844 2017-04-18 20:00 SIFT(横-调-有用)\isdegenerate.m
文件 1055 2005-07-07 21:54 SIFT(横-调-有用)\LICENSE
............此处省略75个文件信息
相关资源
- mosquitto1.4.15-release带源码全套Win32.ra
- 人力资源管理系统.rar
- stm32f103双串口收发结构体版本.zip
- jklmn668_3990025.kdh
- album4.1.zip
- CommTest.zip
- htlibrary.rar
- OK2.exe
- vs2005-camshift.rar
- V3.4(源码).e
- 4532.rar
- AUTOSAR_SWS_CANNetworkManagementAUTOSARCAN总线
- 21987909FTP.rar
- 第11章益智游戏——推箱子.rar
- SINGLEYS2.rar
- 1987ASaltpilestabilityamathematicalmodel.pdf
- Clock.rar100619
- BusHound_v6.0.1正式版(串_并_IDE_SATA_US
- englishpde.pdf
- jjcohuidalang_10024782.zip
- 局域网即时通讯软件.rar
- 同步专家网吧版破解.rar
- 99273910opengl-3d-car.zip
- 文艺青年搜索引擎V2.zip
- Km_System.rar
- Modscan32.zip
- 华为杯第十五届中国研究生数学建模
- SmaliInjector_Src_自己写的smali注入工具
- _电子万年历DS12C887温度18B20LCD12864显示
- ye776t.rar
评论
共有 条评论