MATLAB: [k1,d1] = vl_sift(im1), I need to call the function given. Can any one send me the coding for “vl_sift” call

image processingmosaicing

I am working on image mosaicing, i have download a reference code i.e. mosaicing.m, there i lost "vl_sift" fuction call.can any one send me code for this .
Thank you

Best Answer

Download that and unzip it in a directory. From there look in the folder toolbox/sift and you will find the .c and .m source code for vl_sift
The vl_sift.m file exists only to provide help information, and will have no executable code in it. This is normal and is the way that MATLAB is designed to provide help information for functions coded in other languages such as C
Related Question