Showing posts with label C#. Net. Show all posts
Showing posts with label C#. Net. Show all posts

Monday, March 23, 2009

Thumb Impression in c# .net using Biometric Device

The Following code Illustrates the how to integrate with FINGKEY HAMSTER thumb print
NITGEN

Inorder to Integrate we need to add the two dll given as shown below



Interop.BioEnFP.dll
AxInterop.BioEnFP.dll
After Installing it then we add it in reference in solution Explorer.

Then After that we Add the name space AxBioEnFP

There are two methods in integrate thumb Device in .Net.

In Order to add it in tool box first open visual studio.

Then go to Designer view.In General Right click on General-->then select

-->Choose items .Click on Browse then Add it in items and Select check box on.

Then after drag these items from tool box then add two items called

1)axFPVerifyX1
2)axFPCapture

Then After drag and drop .For Capturing there is method called axFPCapX1.Capture() ;

Then Save the string as axFPCapX1.GetMinutiaeDataAsString(ref this.strFinger);

After saving the finger data to string with Details then add it server.

Then second time if you capture that finger then compare using

FPVerifyX1.Verify(ref obj1, ref obj2)

If this finger matches with the first capturing then we can sucess fully retrives the Details.

there are different methods also in that.

suppose for clearing we use axFPCapX1.Clear();

for Hiding we use axFPCapX1.Hide();

In this way we can Integrate the Thumb Device in c# .net.