How to compare two fingerprints

I am working on fingerprints recognition project and having certain problems as below, 1. Created GUI that calls one function by name match_end and fingertemplate accepts 2 different *.dat files containing ASCII data of fingerprints. h=uicontrol('Style','pushbutton',... 'String','Match',... 'Position',[0,80,80,20],... 'Callback',... ['finger1=fingerTemplateRead;'... 'finger2=fingerTemplateRead;'... 'percent_match=match_end(finger1,finger2,10);']);
The 1st two functions working properly but, getting error in match_end as ??? Error: File: match_end.m Line: 2 Column: 56 Unexpected MATLAB expression.
The code of match_end is,
function percent_match = match_end(finger1,finger2) max_percent(1,2) = k1; max_percent(1,3) = k2; %end; num_match = 0;
%end; %end; %end;
percent_match = max_percent(1,1)*100/minuNum1; %end;
%if function is called in GUI mode, popup out the message box %for final result if nargin == 3
text=strcat('The max matching percentage is ',num2str(percent_match),'%');
msgbox(text);
if percent_match >= 75
msgbox('Finger Print Accepted');
else
msgbox('Finger Print Rejected.');
end
end;
In addition, I have also created one batch which is calling above funtion. But I don't know how to connect these two parts. Please help me in this regard.

댓글 수: 2

Mohammad Junayed
Mohammad Junayed 2018년 11월 26일
can you share your codes thus i know whats the actual problem is ?
Image Analyst
Image Analyst 2018년 11월 26일
This was posted 5 and a half years ago. I doubt Shivansu is still working on this and still needs help.
If he does, he can get algorithms here
or he can take advantage of your generous offer of help. For anyone else, perhaps you can help them in advance by attaching your fingerprint comparison code. Be sure to attach your two images in addition to the m-file. Screenshots would also be helpful.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

도움말 센터File Exchange에서 Language Support에 대해 자세히 알아보기

질문:

2013년 6월 17일

댓글:

2018년 11월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by