資源簡介
圖像拼接 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??????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-03-12?18:23??findHomography.m
?????文件?????103647??2011-01-16?22:50??hall1.JPG
?????文件?????102984??2011-01-16?22:50??hall2.JPG
?????文件???????2348??2011-03-03?20:54??imMosaic.m
?????文件??????50481??2011-01-25?15:06??mosaic_hall.jpg
?????文件????????232??2011-03-11?21:30??mosaicTest.m
?????文件????????418??2010-10-24?15:43??randIndex.m
?????文件???????2377??2011-03-03?20:35??sift.m
?????文件???????2373??2011-01-25?15:12??siftMatch.m
?????文件??????94208??2005-07-07?21:54??siftWin32.exe
?????文件????????582??2011-03-03?20:55??solveHomo.m
?????文件?????158157??2011-01-16?23:25??基于特征點的全自動無縫圖像拼接方法.pdf
?????文件??????45632??2010-12-08?19:33??100-0024_img.jpg
?????文件??????41508??2010-12-08?19:33??100-0023_img.jpg
?????文件?????376537??2011-03-13?15:03??tmp.key
?????文件???????2377??2011-03-11?16:10??sift.asv
?????文件???????1943??2011-03-11?10:40??ransac1.asv
?????文件???????1943??2011-03-13?10:24??ransac1.m
-----------?---------??----------?-----??----
???????????????988886????????????????????19
- 上一篇:最小二乘法匯總及matlab仿真
- 下一篇:隨機抽樣一致性算法matlab
評論
共有 條評論