Borrar filtros
Borrar filtros

How to detect SURF features on image in matlab?

2 visualizaciones (últimos 30 días)
Bhuvan Varugu
Bhuvan Varugu el 17 de Dic. de 2014
Comentada: Dima Lisin el 6 de En. de 2015
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.

Respuestas (2)

Thorsten
Thorsten el 17 de Dic. de 2014
Editada: Thorsten el 17 de Dic. de 2014
You probably have to convert the image to double
I = im2double(I);
or (without the Image Processing TB)
I = double(I)/255;
  1 comentario
Bhuvan Varugu
Bhuvan Varugu el 5 de En. de 2015
Thank you Thosten. But it is not working too. Now the error changed to "Undefined function 'detectSURFFeatures' for input arguments of type 'double'."

Iniciar sesión para comentar.


Dima Lisin
Dima Lisin el 18 de Dic. de 2014
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 comentarios
Bhuvan Varugu
Bhuvan Varugu el 5 de En. de 2015
Thank you. I am using matlab 2014 a with necessary extensions. Error is some where in the code.
Dima Lisin
Dima Lisin el 6 de En. de 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

Iniciar sesión para comentar.

Categorías

Más información sobre Computer Vision Toolbox en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by