Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Hello im doing my project in offline signature verification system, plz tell me how to store extracted SURF features?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
function Feature_Extraction2
%Extract surf features:
%Read image.
I = imread('C:\Users\LENOVO\Desktop\MATLAB\Database2\Preprocessed\forged\1\1.1.png');
%Find and extract features.
points = detectSURFFeatures(I);
%Display and plot ten strongest SURF features.
strongest = points.selectStrongest(100);
imshow(I); hold on;
plot(strongest);
%Display [x y] coordinates for the strongest points on command line.
strongest.Location
end
0 Kommentare
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!