| Author |
Message |
YYY200801
Joined: 22 Feb 2008 Posts: 7
|
25 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
|
30 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
|
10 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

|
10 Apr 2008 20:27 Ads |
|
|
|
|
|
|
| Back to top |
|
 |
derek122
Joined: 17 Jan 2008 Posts: 22 Helped: 1
|
|
| Back to top |
|
 |
tribu
Joined: 21 Apr 2008 Posts: 21
|
27 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
|
11 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
|
11 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
|
12 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.
|
|
| Back to top |
|
 |
tribu
Joined: 21 Apr 2008 Posts: 21
|
18 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
|
14 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
|
27 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
|
14 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
|
06 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
|
22 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
|
02 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
|
05 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 |
|
 |