Sei sulla pagina 1di 7

396,177 Members | 4,061 Online Join Now login

Home Questions Articles Browse Topics Latest Top Members FAQ + Ask Question

home > topics > .net framework > questions > display fingerprint image

+ Ask a Question Need help? Post your question and get tips & solutions from a community of 396,177 IT Pros &
Developers. It's quick & easy.

Display fingerprint image


cherychoclatecandy Question stats
viewed: 2388
hi all,
replies: 2
P: 10 date asked: Sep 17 '08
I have code like this in a windows application that displays bytes of array in a
picture box. This codes are in VB.
Follow this discussion

Dim UserPassport As Passport = New Passport()


Similar topics
m_OperationObj = UserPassport
How to compare fingerprint images
IBM USB Fingerprint reader to secure database
' Get user name
access
Dim frmName As EnrollmentName = New EnrollmentName()
frmName.ShowDialog(Me) [Off] WXP Fingerprint + Python...
If frmName.DialogResult <> System.Windows.Forms.DialogResult.OK Then Fingerprint SDK
Return Microsoft Fingerprint Reader SDK/API
End If Microsoft FingerPrint Reader
If frmName.UserName.Length = 0 Then Orientation Of Fingerprint Image
MessageBox.Show(Me, "You must enter a user name.", Me.Text, Fingerprint identification.
MessageBoxButtons.OK, MessageBoxIcon.Exclamation) fingerprint identification
Return
End If
UserPassport.UserName = frmName.UserName

m_Operation = New FutronicEnrollment()

' Set control properties


m_Operation.FakeDetection = chDetectFakeFinger.Checked
m_Operation.FFDControl = True
m_Operation.FARN = Int32.Parse(tbFARN.Text)
CType(m_Operation, FutronicEnrollment).MIOTControl = cbMIOT.Checked
CType(m_Operation, FutronicEnrollment).MaxModels =
Int32.Parse(CType(cbMaxFrames.SelectedItem, String))

EnableControls(False)

' register events


AddHandler m_Operation.OnPutOn, AddressOf OnPutOn
AddHandler m_Operation.OnTakeOff, AddressOf OnTakeOff
AddHandler m_Operation.UpdateScreenImage, AddressOf UpdateScreenImage
AddHandler m_Operation.OnFakeSource, AddressOf OnFakeSource
AddHandler (CType(m_Operation, FutronicEnrollment)).OnEnrollmentComplete,
AddressOf OnEnrollmentComplete

' start enrollment process


CType(m_Operation, FutronicEnrollment).Enrollment()
Now i need to work it out in a web form where i shld display the bytes of array
generated in a image control in web app.

Basically my application is a finger print scanner. When i click on Enroll button the
image captured shld be displayed in a web form.
Anyone can help me out?

Sep 17 '08 #1

Post Reply

Share this Question

2 Replies
tlhintoq

So the bytes array is coming from ... where? The fingerprint scanner?
Expert Is it a fact or an assumption that the byte array output from the fingerprint scanner
2.5K+ is actually an image? Seems unlikely to me that a fingerprint scanner is really just a
P: 3,525 tiny flatbed image scanner.

If it were just the image of a fingerprint then every developer using one would be
responsible for analysing the image.

Maybe the scanner output is the result of internal computation turning the complex
image into a code that represents that fingerprint. Thus giving uniform functionality
to all programs without each one having to design their own fingerprint analysis
routine.

Also, if you scan a fingerprint for security do you really *want* to display that
scanned image on screen? Seems like a hole in the security. Maybe you should
just use the code it gives you for your security needs, and display a generic
fingerprint.png as feedback that the print was successfully scanned.

Sep 18 '08 #2

reply

satiss7pwr

hey Friends,
P: 41 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.CZKEMClass axczkem1 = new zkemkeeper.CZKEMClass();
bool bIsConnected = false;
string ip = "192.168.1.170";//write here IP Address of your biomatric m/c
int port = 4370;
bIsConnected = axczkem1.Connect_Net(ip, port);
if (bIsConnected == true)
{
Label1.Text = "Connection established!!!";

bool ret = axczkem1.ReadAllGLogData(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.GetAllGLogData(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.ToString() + " " + l.ToString();

//}
}

}
//MessageBox.Show(count.ToString ());
}

}
else
Label1.Text = "cannot Connection!!!";

axczkem1.Disconnect();

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
Thanks

May 6 '11 #3

reply

Post your reply

Sign in to post your reply or Sign up for a free account. Join Now >>
Browse more .NET Framework Questions on Bytes

BYTES.COM © 2014
Formerly "TheScripts.com" from 2005-2008
About Bytes | Advertise on Bytes | Contact Us Follow us to get the Latest Bytes
Sitemap | .NET Framework Answers Sitemap | .NET Framework Insights Sitemap Updates

Potrebbero piacerti anche