我尝试使用VLFeat库。所以,我已经下载了包并运行了vl_setup脚本。但是当我创建一个新脚本并输入以下代码时:
I = imread('imhog.jpg');
image(I) ;
I = single(rgb2gray(I)) ;
[f,d] = vl_sift(I) ;
perm = randperm(size(f,2)) ;
sel = perm(1:50) ;
h1 = vl_plotframe(f(:,sel)) ;
h2 = vl_plotframe(f(:,sel)) ;
set(h1,'color','k','linewidth',3) ;
set(h2,'color','y','linewidth',2) ;
h3 = vl_plotsiftdescriptor(d(:,sel),f(:,sel)) ;
set(h3,'color','g') ;
它给出了这样的错误:
vl_sift( 'imhog.jpg')
未定义的函数或变量'vl_sift'。