Prev: double conversion
Next: reading mov video files
From: Thabit on 6 May 2010 05:41 hi everyone... my final year project is about Fingerprint Recognition System, i'm using MATLAB 7.6.. my project is about 90% completed... the problem is when matching the selected fingerprint with all fingerprints in my database.. matching between two fingerprints is not a problem... but how can i match the selected fingerprint with all fingerprints in my database automatically without selection manually.. all open source codes talking about matching two fingerprints..So I need help from you professionals.... Thanks...
From: TideMan on 6 May 2010 05:58 On May 6, 9:41 pm, "Thabit " <saudia_king2...(a)yahoo.com> wrote: > hi everyone... > my final year project is about Fingerprint Recognition System, i'm using MATLAB 7.6.. > my project is about 90% completed... > the problem is when matching the selected fingerprint with all fingerprints in my database.. matching between two fingerprints is not a problem... > but how can i match the selected fingerprint with all fingerprints in my database automatically without selection manually.. > all open source codes talking about matching two fingerprints..So I need help from you professionals.... > Thanks... help while
From: Thabit on 6 May 2010 06:17 TideMan <mulgor(a)gmail.com> wrote in message <c4fa9d94-1106-407b-af8c-10bce8ac2eb4(a)24g2000yqy.googlegroups.com>... > On May 6, 9:41 pm, "Thabit " <saudia_king2...(a)yahoo.com> wrote: > > hi everyone... > > my final year project is about Fingerprint Recognition System, i'm using MATLAB 7.6.. > > my project is about 90% completed... > > the problem is when matching the selected fingerprint with all fingerprints in my database.. matching between two fingerprints is not a problem... > > but how can i match the selected fingerprint with all fingerprints in my database automatically without selection manually.. > > all open source codes talking about matching two fingerprints..So I need help from you professionals.... > > Thanks... > > help while function template=fingerTemplateRead [templatefile , pathname]= uigetfile('*.dat','Open An Fingerprint template file'); if templatefile ~= 0 cd(pathname); template=load(char(templatefile)); end; How can i select the inverse fingerprints without open dialog box, so i can match it with the selected one?this is the problem.. i cant use while in this case...thanx
From: TideMan on 6 May 2010 06:38 On May 6, 10:17 pm, "Thabit " <saudia_king2...(a)yahoo.com> wrote: > TideMan <mul...(a)gmail.com> wrote in message <c4fa9d94-1106-407b-af8c-10bce8ac2...(a)24g2000yqy.googlegroups.com>... > > On May 6, 9:41 pm, "Thabit " <saudia_king2...(a)yahoo.com> wrote: > > > hi everyone... > > > my final year project is about Fingerprint Recognition System, i'm using MATLAB 7.6.. > > > my project is about 90% completed... > > > the problem is when matching the selected fingerprint with all fingerprints in my database.. matching between two fingerprints is not a problem.... > > > but how can i match the selected fingerprint with all fingerprints in my database automatically without selection manually.. > > > all open source codes talking about matching two fingerprints..So I need help from you professionals.... > > > Thanks... > > > help while > > function template=fingerTemplateRead > > [templatefile , pathname]= uigetfile('*.dat','Open An Fingerprint template file'); > if templatefile ~= 0 > cd(pathname); > template=load(char(templatefile)); > end; > > How can i select the inverse fingerprints without open dialog box, so i can match it with the selected one?this is the problem.. i cant use while in this case...thanx What a lot of messing about..... If this is the standard of your 90% completed project, you'd get a C or worse from me. Just do this: d=dir([pathname '*.dat']); for ifile=1:length(d) template=load([pathname d(ifile).name]); blah blah blah end
|
Pages: 1 Prev: double conversion Next: reading mov video files |