資源簡介
本配準程序能夠對自然圖像、雷達圖像進行完美的配準,得到的配準圖像效果樂觀

代碼片段和文件信息
function?match=BidirectionalMatch(des1des2NumThresh)
match12=UnidirectionalMatch(des1des2NumThresh);
match21=UnidirectionalMatch(des2des1NumThresh);
match21(:[12])=match21(:[21]);
match=[];
a1=match12(:1);
b1=match21(:1);
a2=match12(:2);
b2=match21(:2);
for?k=1:size(match121)
????t=abs(a1(k)-b1)+abs(a2(k)-b2);
????IX=find(t==0);
????len=length(IX);
????if?len
????????match=[match;match21(IX:)];
????end
end
????
function?match=UnidirectionalMatch(des1des2NumThresh)
len1=size(des12);
C=(des1‘*des2)./sqrt(((diag(des1‘*des1))*(diag(des2‘*des2))‘));
[CIX]=sort(C2‘descend‘);
match=[];
for?k=1:len1
????c=C(k:);
????ix=IX(k:);
????c=c(1:Num);
????ix=ix(c>Thresh);
????len=length(ix);
????if?len
????????mch=zeros(len1);
????????mch(:)=k;
????????match=[match;[mchix‘]];
????end
end
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????847??2015-07-16?18:17??基于SIFT特征的圖像配準(MATLAB代碼)\BidirectionalMatch.m
?????文件????????303??2015-07-17?18:00??基于SIFT特征的圖像配準(MATLAB代碼)\drawLine.m
?????文件????????115??2015-07-17?17:47??基于SIFT特征的圖像配準(MATLAB代碼)\drawMatchedPicture.m
?????文件????????657??2015-07-17?17:35??基于SIFT特征的圖像配準(MATLAB代碼)\drawPoint.m
?????文件????????219??2015-07-17?17:43??基于SIFT特征的圖像配準(MATLAB代碼)\drawRotatedAngleHist.m
?????文件???????1204??2015-07-17?17:30??基于SIFT特征的圖像配準(MATLAB代碼)\getMatchedPicture.m
?????文件????????356??2015-07-17?13:56??基于SIFT特征的圖像配準(MATLAB代碼)\getOptimizedMatchedIndex.m
?????文件????????130??2015-07-16?15:46??基于SIFT特征的圖像配準(MATLAB代碼)\getRotatedAngle.m
?????文件???????1337??2015-07-17?16:59??基于SIFT特征的圖像配準(MATLAB代碼)\getTransformMatrix.m
?????文件??????52605??2014-06-22?21:01??基于SIFT特征的圖像配準(MATLAB代碼)\image1.jpg
?????文件??????48199??2014-06-22?21:01??基于SIFT特征的圖像配準(MATLAB代碼)\image2.jpg
?????文件???????1061??2015-07-17?18:10??基于SIFT特征的圖像配準(MATLAB代碼)\main.m
?????文件????????645??2015-07-17?17:38??基于SIFT特征的圖像配準(MATLAB代碼)\savePicture.m
?????文件???????1935??2015-07-16?15:41??基于SIFT特征的圖像配準(MATLAB代碼)\SIFT.m
?????文件??????94208??2005-07-07?21:54??基于SIFT特征的圖像配準(MATLAB代碼)\siftWin32.exe
?????文件?????104124??2015-04-27?13:04??基于SIFT特征的圖像配準(MATLAB代碼)\黃河口1_400_1.jpg
?????文件?????116504??2015-04-27?13:07??基于SIFT特征的圖像配準(MATLAB代碼)\黃河口1_400_2.jpg
?????目錄??????????0??2015-07-17?18:14??基于SIFT特征的圖像配準(MATLAB代碼)
-----------?---------??----------?-----??----
???????????????424449????????????????????18
- 上一篇:多目標遺傳算法matlab程序
- 下一篇:基于SIFT特征的圖像配準之仿真圖像
評論
共有 條評論