Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] matlab source code for fingerprint matching

Status
Not open for further replies.

themizoo

Newbie level 2
Newbie level 2
Joined
Jan 26, 2007
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,289
fingerprint matching source code

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
 

jiteshch

Newbie level 1
Newbie level 1
Joined
Mar 6, 2007
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,285
code for fingerprint

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
 

arvinth

Newbie level 1
Newbie level 1
Joined
Mar 27, 2007
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,286
fingerprint recognition source code

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.
 

padfooot

Newbie level 6
Newbie level 6
Joined
Apr 20, 2007
Messages
12
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,281
Activity points
1,386
fingerprint recognition matlab code

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
 

vanthach

Newbie level 4
Newbie level 4
Joined
Jun 19, 2007
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,303
fingerprint enhancement matlab

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
 

huxiaoqin

Newbie level 1
Newbie level 1
Joined
Aug 23, 2007
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,284
matlab projects with source code

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

hulahula

Member level 1
Member level 1
Joined
Jul 15, 2006
Messages
32
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Activity points
1,397
fingerprint code

**broken link removed**
 

ladymaly

Junior Member level 2
Junior Member level 2
Joined
Nov 10, 2007
Messages
23
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,421
matlab fingerprint recognition

2001008&luigirosa
thanx alot for ur help:D
 

Amitesh

Newbie level 3
Newbie level 3
Joined
Feb 28, 2008
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,300
minutiae extraction matlab code

hi
im new member nd getting source code frm this link
**broken link removed**
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).
 

YYY200801

Newbie level 4
Newbie level 4
Joined
Feb 22, 2008
Messages
7
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,312
fingerprint in matlab

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!!
 

vijaybidla

Newbie level 1
Newbie level 1
Joined
Mar 30, 2008
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,284
fingerprint coding using matlab

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

Gurpurneet

Newbie level 1
Newbie level 1
Joined
Apr 10, 2008
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,286
fingerprint enhancement using matlab

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
 

derek122

Junior Member level 2
Junior Member level 2
Joined
Jan 17, 2008
Messages
22
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,281
Activity points
1,376
source code for fingerprint recognition

**broken link removed**
**broken link removed**
**broken link removed**
**broken link removed**
**broken link removed**
**broken link removed**
**broken link removed**
**broken link removed**
 

tribu

Junior Member level 2
Junior Member level 2
Joined
Apr 21, 2008
Messages
21
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,399
matlab fingerprint matching

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

Umair.Mateen

Newbie level 4
Newbie level 4
Joined
Aug 9, 2008
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Pakistan
Activity points
1,311
fingerprint enhancement matlab code

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
 

ducbin

Newbie level 6
Newbie level 6
Joined
Nov 11, 2008
Messages
13
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,349
fingerprint using matlab

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.
 

ducbin

Newbie level 6
Newbie level 6
Joined
Nov 11, 2008
Messages
13
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,349
fingerprint codes

I read that project. It 's useful.

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

tribu

Junior Member level 2
Junior Member level 2
Joined
Apr 21, 2008
Messages
21
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,399
fingerprint code

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
 

ameermru

Newbie level 1
Newbie level 1
Joined
Dec 14, 2008
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,285
matlab fingerprint code

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
 

zio_nneo

Full Member level 2
Full Member level 2
Joined
Jun 3, 2007
Messages
145
Helped
8
Reputation
16
Reaction score
5
Trophy points
1,298
Activity points
2,212
fingerprint verification matlab code

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

    V

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Top