Effacer les filtres
Effacer les filtres

How to create database of 320 images in matlab? for signature verification system how to extract surf features and how to store them?

1 vue (au cours des 30 derniers jours)
I = imread('C:\Users\LENOVO\Desktop\MATLAB\Database2\Preprocessed\forged\1\1.1.png');
%Find and extract features.
points = detectSURFFeatures(I);
[~, valid_points] = extractFeatures(I, points);
%Display and plot ten strongest SURF features.
figure; imshow(I); hold on;
plot(valid_points.selectStrongest(100),'showOrientation',true);

Réponse acceptée

KSSV
KSSV le 7 Jan 2019
files = dir('*.png')
N = lenght(Files) ;
for i = 1:N
I = imread(files(i).name)
%Find and extract features.
% points = detectSURFFeatures(I);
% [~, valid_points] = extractFeatures(I, points);
%Display and plot ten strongest SURF features.
% figure; imshow(I); hold on;
% plot(valid_points.selectStrongest(100),'showOrientation',true);
end
  4 commentaires
Regina N
Regina N le 7 Jan 2019
Is this code hepl to read the image from database....i have run this code...and it only read the image....bt i want to create the database...plz sir suggest me something related to that

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by