How to create database of 320 images in matlab? for signature verification system how to extract surf features and how to store them?
    4 次查看(过去 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);
0 个评论
采纳的回答
  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
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

