I am using following code for detecting surf features, bt the error is occur, so plz help me to solve it.

1 次查看(过去 30 天)
%read image
I = imread('C:\Users\LENOVO\Desktop\Genuine\2\2.2.png');
I2=rgb2gray(I);
%Detect SURF features.
points = detectSURFFeatures(I2);
%Display locations of interest in image.
imshow(I2); hold on ;
plot(points.selectStrongest(10
));
The following error is occured:
Error in (Line 7)
imshow(I2); hold on ;
  3 个评论

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2019-2-9
编辑:Image Analyst 2019-2-9
You have named your script feature.m. Though it's not a function you can find in the help, it is a built-in function that MATLAB uses internally:
>> which -all feature
built-in (undocumented)
Rename your m-file to something other than feature, or any other built-in function name. Check with "which -all" like I did above to make sure.
If you need more help, attach your image 'C:\Users\LENOVO\Desktop\Genuine\2\2.2.png' and your script (renamed m-file)with the paper clip icon.
It might be related to the plot line not ending correctly, and )); being on it's own line.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by