0

When I tried to compile Vedaldi's SIFT algorithm in MATLAB, I got the following error while compiling: sift_compile

D:\PROGRA~1\MATLAB\R2010A~1\BIN\MEX.PL: Error: 'imsmooth.c' not found. 

??? Error using ==> mex at 222
Unable to complete successfully.

Error in ==> sift_compile at 33
mex('imsmooth.c',opts{:}) ;

I did got mex to run on other cases, the compiler I used is VS2008. And the path of the imsmooth.c and other source code is also included in the MATLAB path. Could someone give me some hints how should I get it work?

H.Muster
  • 9,297
  • 1
  • 35
  • 46
superpanda
  • 21
  • 4
  • Try using the full path of imsmooth.c. Do you actually have any important options in opts? Also while I was experimenting with mex, I couldn't compile using the parentheses as you did there. Instead try `mex imsmooth.c -options` That might work out better for you. – user1477622 Jun 26 '12 at 10:15

1 Answers1

1

C:\Program Files\MATLAB\R2011a\sift\

add in the pathnames helps!