I have to do a project on fingerprint verification. I've only the driver files to scan fingerprint images.. Anybody plz help me to do the project using MS Visual Studio 2008.. I hav to submit the project before 30th december.. I wish to use any algorithm to perform 1:N matching of fingerprints..
Fingerprint codes
Collapse
X
-
-
Bytes has a policy regarding assisting students with their homework.
The short version is that the volunteers here can't help you with schoolwork.
A) We don't know what material you have and have not learned in class.
B) We don't know the guidelines you must follow.
C) In the long run giving you the answers actually short changes your education. -
hey Friends,
I want a simple help from you,
I want a code that how to catch event of finger put on machine and how to catch the signal(message) from fingerprint machine (Like finger is valid or not)
I have a code to connect with fingerprint device as below
int count = 0;
zkemkeeper.CZKE MClass axczkem1 = new zkemkeeper.CZKE MClass();
bool bIsConnected = false;
string ip = "192.168.1.170" ;//write here IP Address of your biomatric m/c
int port = 4370;
bIsConnected = axczkem1.Connec t_Net(ip, port);
if (bIsConnected == true)
{
Label1.Text = "Connection established!!!" ;
bool ret = axczkem1.ReadAl lGLogData(1);
if (ret)
{
int a = 0;
int b = 0;
int c = 0;
int d = 0;
int ee = 0;
int f = 0;
int g = 0;
int h = 0;
int i = 0;
int j = 0;
int k = 0;
int l = 0;
int m = 0;
int n = 0;
int o = 0;
while (axczkem1.GetAl lGLogData(1, ref a, ref b, ref c, ref k, ref l, ref d, ref m, ref ee, ref f, ref g))
{
//if (ee == 7 && m == 4 && d == 2011)
{
count++;
//if (b == //any Employee No)
//{
Label1.Text = b.ToString() + " hour: " + f + " Min: " + g;
//Label1.Text=k.T oString() + " " + l.ToString();
//}
}
}
//MessageBox.Show (count.ToString ());
}
}
else
Label1.Text = "cannot Connection!!!";
axczkem1.Discon nect();
But i dont know how to implement further,
Please any one help me
The connection is establish successfully but i dont know about other events like finger putting on machine,catch message sent by machine
ThanksComment
Comment