How to detect SURF features on image in matlab?
Mostra commenti meno recenti
I am using detectSURFfeature tool but it is not working. Whatever is the image the error is shown as "Undefined function 'detectSURFFeatures' for input arguments of type 'uint8'". But the input is of uint8 only.
Risposte (2)
You probably have to convert the image to double
I = im2double(I);
or (without the Image Processing TB)
I = double(I)/255;
1 Commento
Bhuvan Varugu
il 5 Gen 2015
Dima Lisin
il 18 Dic 2014
0 voti
detectSURFFeatures has been available in the Computer Vision System Toolbox since the R2011b release. So to use it you need MATLAB R2011b or later with the Computer Vision System Toolbox.
2 Commenti
Bhuvan Varugu
il 5 Gen 2015
Dima Lisin
il 6 Gen 2015
Hi Bhuvan,
What do you see if you do
>> which detectSURFFeatures
Also, can you please verify that you indeed have the Computer Vision System Toolbox installed? Do you see it listed if you do
>> ver
Categorie
Scopri di più su Computer Vision Toolbox in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!