Can I explicitly define the size of "points" matrix returned by detectSURFFeatures function?
1 view (last 30 days)
Show older comments
Sai Kumar Dwivedi
on 12 Mar 2015
Commented: Dima Lisin
on 12 Mar 2015
I am using ORL dataset for face recognition. For feature extraction I am using inbuilt function detectSURFFeatures. But the function returns different size of points matrix for different image. Is there any way I can explicitly restrict the size of points matrix it returns.
points = detectSURFFeatures(I);
% The points matrix is different for different image.
0 Comments
Accepted Answer
Dima Lisin
on 12 Mar 2015
Hi Sai,
No, there is no way to explicitly restrict the number of points in the detectSURFFeatures function itself. The number of points it returns depends on the content of the image and the parameters, such as 'MetricThreshold'. However, you can limit the number of points after the fact. For example, you can use the selectStrongest method of the returned SURFPoints object to get the n strongest features.
2 Comments
More Answers (0)
See Also
Categories
Find more on Computer Vision with Simulink in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!