Remove SURF points according to scales

5 visualizaciones (últimos 30 días)
muhammad faiz
muhammad faiz el 30 de Dic. de 2016
Comentada: Priodyuti Pradhan el 2 de Nov. de 2020
Hai,
I would like to remove any SURF points that having scales less than 2. how can i do that?
please help.
  2 comentarios
muhammad faiz
muhammad faiz el 30 de Dic. de 2016
i'm sorry...its a SURF points from the computer vision toolbox. (SURF detector). Basically, i have lot of SURF points generated by the SURF detector from the image that i have. However, i only needs points that have Scales highers than 0.5. therefore, i want remove any points lower than that scale.

Iniciar sesión para comentar.

Respuestas (2)

KSSV
KSSV el 30 de Dic. de 2016
[x,y,z] = peaks(100) ;
figure(1)
surf(x,y,z)
% remove less then 2
z(z<2) = NaN ;
figure(2)
surf(x,y,z)
  3 comentarios
Priodyuti Pradhan
Priodyuti Pradhan el 2 de Nov. de 2020
It's really helpful for me! Thanks for sharing!

Iniciar sesión para comentar.


Anand
Anand el 30 de Dic. de 2016
% Read an image
I = imread('cameraman.tif');
% Compute SURF features
points = detectSURFFeatures(I);
% Filter out points with scale less than 2
newPoints = points( points.Scale<2 );
% Plot points
imshow(I);
hold on;
plot(newPoints);

Categorías

Más información sobre Computer Vision with Simulink en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by