sift_demo5.m

来自「sift的matlab代码」· M 代码 · 共 15 行

M
15
字号
% SIFT_DEMO5  Demonstrate SIFT code (5)%   Finding eggs.I=imreadbw('data/nest.png') ;[f,d,gss,dogss] = sift(I,'verbosity',1,'boundarypoint',0,'threshold',.0282,'firstoctave',-1,'edgethreshold',0) ; d = uint8(512*d) ;figure(1) ; clf ; colormap gray ;imagesc(I) ; hold on ; axis equal ;h=plotsiftframe(f) ;set(h,'LineWidth',3) ;figure(2); clf ; plotss(dogss) ; colormap gray;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?