微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 微波和射频技术 > 电磁仿真讨论 > fingerprint matching source code

fingerprint matching source code

时间:03-30 整理:3721RD 点击:
hi to all
i will make project in fingerprint recognetion and hope anybody help me
i try to use matlab in this but i cannt so can anybody send me source code for this

Hey can any one send me d link or code 4r fingerprint enhancement...its very urgent !
guys plzz help me out!

eithr send d link or plz mail me at jiteshch@gmail.com

sir, i need a matlab code for fingerprint verification system based on triangular matching and dynamic time warping.the author of this paper is zsolt miklos kovacs-vajna.this paper is published on IEEE transacations on pattern matching and machine intelligence.vol,22 no-11, november 2000.

finally me have reached the right place...me need help in my project..fingerprint recognition..can anyone tell me how and where to start the project..and plzzz send me the code too...it will be a huge favor
aleekhalid@hotmail.com

Hi everybody,
i'm doing my final thesis about Fingerprint recognition in Matlab
i do need someone's help.
thanks in advance.
my e-mail:thachpresent@yahoo.com

can u give us some matlab code for fingerrpint identification?
thnks in advance

http://www.c51c51.com/

2001008&luigirosa
thanx alot for ur help:D

hi
im new member nd getting source code frm this link
http://www.comp.hkbu.edu.hk/~vincent/resPaper.htm
but i have problem.When i run this program i can use all its application but at last step it require matching fingerprint but it opens a window when i click on this it require .dat file. How will .dat file will match with .tif file. and how can i obtain this .dat file( using which instrument).

Hi guys,

I am studying A. K. Jain's paper "flterbank-based fingerprint matching", however, I don't understand whether we need to train the image by feeding the fingerCode? what do they use for training? Neural network or SVM? please help!


Thanks!

save the extacted minutia fingerprint with .dat extension.
e.g.
click on save
then type abc.dat
and click ok

HELLO Sir,
I am working on Fingerprint scanner,so for matching of two fingerprints i need the matlab coding for the same,Plz do us a huge favour by
sending the matlab code for matching of two fingerprints (in tif file )at gita_taur@yahoo.co.in or gita.taur@gmail.com

Site Map 2399
Site Map 2400
Site Map 2401
Site Map 2402
Site Map 2403
Site Map 2404
Site Map 2405
Site Map 2406

any body has a source code for fingerprint recognition using matlab...
also, do anybody has a good reference for it

HERE is the minutia Extraction Code

Code:
function [ending,bf] = ExtractMin(min_im)%is thin image
[r c]=size(min_im);
ending=zeros(200,2);
bf=zeros(100,2);
numending=1;
numbf=1;
%Location=1;% Actual location in structure
for i=20:(r-20)
    for j=20:(c-20)
        if (min_im(i,j) == 0)
            P1=min_im(i,j+1);
            P2=min_im(i-1,j+1);
            P3=min_im(i-1,j);
            P4=min_im(i-1,j-1);
            P5=min_im(i,j-1);
            P6=min_im(i+1,j-1);
            P7=min_im(i+1,j);
            P8=min_im(i+1,j+1);
            
            minusP12 = xor(P1,P2);		minusP23 = xor(P2,P3);		minusP34 = xor(P3,P4);		minusP45 = xor(P4,P5);		minusP56 = xor(P5,P6);		minusP67 = xor(P6,P7);		minusP78 = xor(P7,P8);		minusP81 = xor(P8,P1);	
            NODEID = (double(minusP12) + double(minusP23)...
          		+ double(minusP34) + double(minusP45)...
                + double(minusP56) + double(minusP67)...
                + double(minusP78) + double(minusP81))/2 ;	
            if (NODEID == 1) % Ending
                ending(numending,1) = i;
                ending(numending,2) = j;
                %Save in the structure
                %MinVector1(Location).CenterRow=i;
                %MinVector1(Location).CenterCol=j;
                %MinVector1(Location).CenterType=1 ;%1 represent Ending
                numending=numending+1;
                %Location=Location+1;
            end
            if (NODEID == 3 ) % Bifurcation
                bf(numbf,1) = i;
                bf(numbf,2) = j;
                
                %Save in the structure
                %MinVector1(Location).CenterRow=i;
                %MinVector1(Location).CenterCol=j;
                %MinVector1(Location).CenterType=2 ;%2 represent Ending
                numbf=numbf+1;
                %Location=Location+1;
            end
        end        
        
    end
end

end  %function

How to take fingerprint image ?


Iam doing fingerprint recognition with PC. I want to take fingerprint image, then that image 's sent to PC to recognize. But i don't know how to have that image.

Can i use webcam ?

Please help me.

I read that project. It 's useful.

Please answer for me: Block direction estimation to do what ? can do directly ROI of fingerprint image.

hi everyone

is there a source code available for iris-based recognition, text-dependent speech recognition in matlab as well as the fusion technique to combine the two projects? because this is my project, and i really need help.. please.... i really badly needed it as soon as possible...please


remain,

tribu

I want fingerprint matching/ authenticating/ verifying codes in java if someone can help.. pliz..

N also how can i bind my fingerprint reader to my java codes..

Big Problem.. pliz help..


btw is matlab n opensource programming language?

Pliz do respond

hi where can i find the matlab code for finger print recognition in matlab? not .p file but only the .m files

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top