필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
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

답변 (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