필터 지우기
필터 지우기

How to detect SURF features on image in matlab?

조회 수: 2 (최근 30일)
Bhuvan Varugu
Bhuvan Varugu 2014년 12월 17일
댓글: Dima Lisin 2015년 1월 6일
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.

답변 (2개)

Thorsten
Thorsten 2014년 12월 17일
편집: Thorsten 2014년 12월 17일
You probably have to convert the image to double
I = im2double(I);
or (without the Image Processing TB)
I = double(I)/255;
  댓글 수: 1
Bhuvan Varugu
Bhuvan Varugu 2015년 1월 5일
Thank you Thosten. But it is not working too. Now the error changed to "Undefined function 'detectSURFFeatures' for input arguments of type 'double'."

댓글을 달려면 로그인하십시오.


Dima Lisin
Dima Lisin 2014년 12월 18일
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
Bhuvan Varugu
Bhuvan Varugu 2015년 1월 5일
Thank you. I am using matlab 2014 a with necessary extensions. Error is some where in the code.
Dima Lisin
Dima Lisin 2015년 1월 6일
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by