Can I explicitly define the size of "points" matrix returned by detectSURFFeatures function?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Dima Lisin
2015-3-12
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!