Can I explicitly define the size of "points" matrix returned by detectSURFFeatures function?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sai Kumar Dwivedi
el 12 de Mzo. de 2015
Comentada: Dima Lisin
el 12 de Mzo. de 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 comentarios
Respuesta aceptada
Dima Lisin
el 12 de Mzo. de 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 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!