electronics forum

Rules | Recent posts | topic RSS | Search | Register  | Log in

matlab source code for fingerprint matching


Goto page Previous  1, 2
Post new topic  Reply to topic    EDAboard.com Forum Index -> Software Links -> matlab source code for fingerprint matching
Author Message
YYY200801



Joined: 22 Feb 2008
Posts: 7


Post25 Mar 2008 10:25   

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!!
Back to top
vijaybidla



Joined: 30 Mar 2008
Posts: 1


Post30 Mar 2008 12:40   

fingerprint coding using matlab


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



Joined: 10 Apr 2008
Posts: 1


Post10 Apr 2008 20:27   

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(at)yahoo.co.in or gita.taur(at)gmail.com
Back to top
Google
AdSense
Google Adsense




Post10 Apr 2008 20:27   

Ads




Back to top
derek122



Joined: 17 Jan 2008
Posts: 22
Helped: 1


Post25 Apr 2008 11:07   

source code for fingerprint recognition


Site Map 2399
Site Map 2400
Site Map 2401
Site Map 2402
Site Map 2403
Site Map 2404
Site Map 2405
Site Map 2406
Back to top
tribu



Joined: 21 Apr 2008
Posts: 21


Post27 Jun 2008 3:44   

matlab fingerprint matching


any body has a source code for fingerprint recognition using matlab...
also, do anybody has a good reference for it
Back to top
Umair.Mateen



Joined: 09 Aug 2008
Posts: 5
Location: Pakistan


Post11 Aug 2008 18:28   

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

[/code]
Back to top
ducbin



Joined: 11 Nov 2008
Posts: 13


Post11 Nov 2008 12:22   

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.
Back to top
ducbin



Joined: 11 Nov 2008
Posts: 13


Post12 Nov 2008 15:46   

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. Question
Back to top
tribu



Joined: 21 Apr 2008
Posts: 21


Post18 Nov 2008 3:20   

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
Back to top
ameermru



Joined: 14 Dec 2008
Posts: 1


Post14 Dec 2008 9:38   

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
Back to top
zio_nneo



Joined: 03 Jun 2007
Posts: 214
Helped: 2


Post27 Dec 2008 17:19   

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
Back to top
complete



Joined: 05 Feb 2007
Posts: 23
Location: karachi


Post14 Jan 2009 13:56   

fingerprint biometrics source code


this is for all of u

i m a student of eletronics engineering currently in my final year.Can anyone help me out because i ned an image processing project but on MATLAB. I have completely untouched in eda board due tio some personal reasons. CAN anyone give me the projct on image processing but complete books and guidline should me provided
thanx
Back to top
melese dendena



Joined: 02 Feb 2009
Posts: 1


Post06 Feb 2009 8:43   

code fingerprint


I'm working on fingerprint recognition system for my final project and the developing environment is MATLAB what I need is that I want to store the template (which is generated from minutiaes of the fingerprint which contain n number of minutiae each with their x-coordinate, y-coordinate and orientation (i.e. each template have an n by three size)) into the SQL database on the time of registration and I want to compare the life fingerprint after I generate it's template to each templates in the SQL database when I want to store this template using the insert command i am getting the following error :
Error==> horzcat:
All matrices in the bracketed expression must have the same number of rows.
If you have any suggestion please email me.............................. THANKS
Back to top
yumraj



Joined: 09 Feb 2009
Posts: 1


Post22 Feb 2009 10:34   

how to run p file in matlab


i downloaded the source code for fingerprint matching from the following link mentioned at the top of this discussion:
http://www.comp.hkbu.edu.hk/~vincent/resPaper.htm

but it would be nice if anyone could please explain or give the order of the execution of files in this code

thanks in advance

reply soon
Back to top
aku_hdesai



Joined: 29 Oct 2009
Posts: 3
Location: india


Post02 Nov 2009 6:57   

matlab source code for fingerprint matching


hi,
i m doing project on rotation invarient fingerprint recognition.
please help me how to do it in matlab & give me coad
Back to top
AlexLim



Joined: 21 Oct 2009
Posts: 2


Post05 Nov 2009 2:49   

Re: matlab source code for fingerprint matching


Hi guys,

I've been studying of fingerprint recognition system.

I need a fingerprint db. Would anybody help me?

my contact point is
alex.hc.lim(at)gmail.com

Many thanks in advance.
Back to top
Arabic versionBulgarian versionCatalan versionCzech versionDanish versionGerman versionGreek versionEnglish versionSpanish versionFinnish versionFrench versionHindi versionCroatian versionIndonesian versionItalian versionHebrew versionJapanese versionKorean versionLithuanian versionLatvian versionDutch versionNorwegian versionPolish versionPortuguese versionRomanian versionRussian versionSlovak versionSlovenian versionSerbian versionSwedish versionTagalog versionUkrainian versionVietnamese versionChinese version
Post new topic  Reply to topic    EDAboard.com Forum Index -> Software Links -> matlab source code for fingerprint matching
Page 2 of 2 All times are GMT + 1 Hour
Goto page Previous  1, 2
Similar topics:
help required with matlab code for fingerprint matching (1)
matlab source code for fingerprint classification (2)
C code for fingerprint extraction and matching (5)
need matlab code for fingerprint classification (4)
matlab code for fingerprint verification system (1)
fingerprint source code?? (1)
fingerprint recogntion matlab code (2)
Fingerprint feature extraction MATLAB code (3)
MATlab Source Code for rayleigh fading channel (1)
porting of matlab source code into 'c' for blackfin procssor (1)


Abuse || Administrator || Moderators || Support us || sitemap
topic RSS