sift算法的MATLAB程序.doc

sift算法的MATLAB程序.doc

ID:49769688

大小:74.00 KB

页数:2页

时间:2020-03-04

sift算法的MATLAB程序.doc_第1页
sift算法的MATLAB程序.doc_第2页
资源描述:

《sift算法的MATLAB程序.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、%[image,descriptors,locs]=sift(imageFile)%%ThisfunctionreadsanimageandreturnsitsSIFTkeypoints.%Inputparameters:%imageFile:thefilenamefortheimage.%%Returned:%image:theimagearrayindoubleformat%descriptors:aK-by-128matrix,whereeachrowgivesaninvariant%descriptorforoneoftheK

2、keypoints.Thedescriptorisavector%of128valuesnormalizedtounitlength.%locs:K-by-4matrix,inwhicheachrowhasthe4valuesfora%keypointlocation(row,column,scale,orientation).The%orientationisintherange[-PI,PI]radians.%%Credits:ThanksforinitialversionofthisprogramtoD.Alvaroand%J.

3、J.Guerrero,UniversidaddeZaragoza(modifiedbyD.Lowe)function[image,descriptors,locs]=sift(imageFile)%Loadimageimage=imread(imageFile);%IfyouhavetheImageProcessingToolbox,youcanuncommentthefollowing%linestoallowinputofcolorimages,whichwillbeconvertedtograyscale.%ifisrgb(im

4、age)%image=rgb2gray(image);%end[rows,cols]=size(image);%ConvertintoPGMimagefile,readableby"keypoints"executablef=fopen('tmp.pgm','w');iff==-1error('Couldnotcreatefiletmp.pgm.');endfprintf(f,'P5%d%d255',cols,rows);fwrite(f,image','uint8');fclose(f);%Callkeypoints

5、executableifisunixcommand='!./sift';elsecommand='!siftWin32';endcommand=[command'tmp.key'];eval(command);%Opentmp.keyandcheckitsheaderg=fopen('tmp.key','r');ifg==-1error('Couldnotopenfiletmp.key.');end[header,count]=fscanf(g,'%d%d',[12]);ifcount~=2error('Invali

6、dkeypointfilebeginning.');endnum=header(1);len=header(2);iflen~=128error('Keypointdescriptorlengthinvalid(shouldbe128).');end%Createsthetwooutputmatrices(useknownsizeforefficiency)locs=double(zeros(num,4));descriptors=double(zeros(num,128));%Parsetmp.keyfori=1:num[vecto

7、r,count]=fscanf(g,'%f%f%f%f',[14]);%rowcolscaleoriifcount~=4error('Invalidkeypointfileformat');endlocs(i,:)=vector(1,:);[descrip,count]=fscanf(g,'%d',[1len]);if(count~=128)error('Invalidkeypointfilevalue.');end%Normalizeeachinputvectortounitlengthdescrip=descrip/sqrt(su

8、m(descrip.^2));descriptors(i,:)=descrip(1,:);endfclose(g);

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。