資源簡介
基于Harris角點檢測的圖像拼接matlab實現(xiàn),
主要內(nèi)容包括Harris角點檢測,NCC,RANSAC以及2幅圖像的拼接
The main contents include the Harris corner detector, th
代碼片段和文件信息
%?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??imageMosaic\appendimages.m
?????文件????????252??2012-03-15?17:27??imageMosaic\calcDist.m
?????文件???????1662??2012-03-18?21:02??imageMosaic\estHomography.asv
?????文件???????1656??2012-03-17?20:25??imageMosaic\estHomography.m
?????文件???????2026??2012-03-17?19:24??imageMosaic\findCorr.asv
?????文件???????2030??2012-03-17?20:24??imageMosaic\findCorr.m
?????文件?????103647??2011-01-16?22:50??imageMosaic\hall1.JPG
?????文件?????102984??2011-01-16?22:50??imageMosaic\hall2.JPG
?????文件???????2875??2012-03-10?20:55??imageMosaic\Harris.asv
?????文件???????2896??2012-03-18?10:01??imageMosaic\Harris.m
?????文件????????850??2012-04-03?16:03??imageMosaic\main.m
?????文件????????418??2010-10-24?15:43??imageMosaic\randIndex.m
?????文件????????587??2012-03-10?18:34??imageMosaic\solveHomo.m
?????文件???????2150??2012-03-17?20:08??imageMosaic\warpTheImage.m
?????目錄??????????0??2012-03-18?22:46??imageMosaic
-----------?---------??----------?-----??----
???????????????224494????????????????????15
評論
共有 條評論