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

1 次查看(过去 30 天)
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);

采纳的回答

KSSV
KSSV 2019-1-7
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 个评论
Regina N
Regina N 2019-1-7
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by