How is data captured through fingerprint scan & stored?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • BIPIN N
    New Member
    • Jan 2011
    • 3

    How is data captured through fingerprint scan & stored?

    Can any one explain about how fingerprint data stored in database which to be used further for data query?
    Last edited by Niheel; Jan 27 '11, 05:22 AM.
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Finger prints are captured from the capturing device and stored as images in the DB. This is used for comparison with another image in the future.

    Comment

    • BIPIN N
      New Member
      • Jan 2011
      • 3

      #3
      Dear MR.Debasis

      Thanks for reply. finger print capture device is used to match stored image but how about time in & time out is got captured in database.. is it in ascii format & then converted to db. Can u please explain in detail.

      Comment

      • Rabbit
        Recognized Expert MVP
        • Jan 2007
        • 12517

        #4
        Why do you need to know this information?

        Comment

        • BIPIN N
          New Member
          • Jan 2011
          • 3

          #5
          Someone asked me while attending interview, can you help me in detail. I must know it..

          Comment

          • Rabbit
            Recognized Expert MVP
            • Jan 2007
            • 12517

            #6
            It depends on the software implementation. The time in and time out can be sent by the scanning device as an integer or the database is set up with a default for time in and only time out is sent.

            Comment

            • satiss7pwr
              New Member
              • Jan 2010
              • 41

              #7
              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
              Thanks

              Comment

              Working...