I try to make use of VLFeat library. So, I've downloaded the package and run vl_setup script. But when I create a new script and type this code:
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') ;
it gives such error:
vl_sift('imhog.jpg')
Undefined function or variable 'vl_sift'.