运行surf matlab代码时遇到错误(validattribute)

时间:2015-12-23 02:17:20

标签: matlab computer-vision matlab-cvst

此代码产生错误:

  

validateattribute(I {'逻辑'' unit8' .....

请有人告诉我为什么会这样......

I = imread('flowers.jpg');
I=im2double(I);
points = detectSURFFeatures(I);
imshow(I); hold on;
plot(points.selectStrongest(10));

1 个答案:

答案 0 :(得分:0)

detectSURFFeatures拍摄灰度图像。如果您的图片是RGB,则应致电rgb2gray frist。

错误信息应该告诉你这个效果。