Clear Filters
Clear Filters

How can i find distance between surf feature point on a signature image in oder to varify real signature or not.

2 views (last 30 days)
E= imread('1.png');
F=rgb2gray(E);
G= imsharpen(F,'Radius',2,'Amount',1);
H=im2bw(G);
% points= detectSURFFeatures(l);
figure;
imshow(H); hold on;
title('Image Of H');
% plot(points);
A = imread('4.png');
B=rgb2gray(A);
C= imsharpen(B,'Radius',2,'Amount',2);
D=im2bw(C);
figure;
imshow(D); hold on;
title('Image Of D');
hPoints = detectSURFFeatures(H); dPoints = detectSURFFeatures(D);
figure; imshow(H); title('200 Strongest Feature Points from H Image'); hold on; plot(selectStrongest(hPoints, 200));
figure; imshow(D); title('200 Strongest Feature Points from D Image'); hold on; plot(selectStrongest(dPoints, 200));
this are the code for feature extraction

Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!