Looking for thumb Impression articles

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ahmedhussain
    New Member
    • Dec 2008
    • 79

    Looking for thumb Impression articles

    Hi every one,

    I have to write a proposal on thumb impression . And I have searched alot but couldnt find any material.
    Can any one help plz.

    Thank you,

    Regards,
    Ahmed
  • Nepomuk
    Recognized Expert Specialist
    • Aug 2007
    • 3111

    #2
    What exactly are you looking for? How to use it? Why or why not to use it? How to write programs to use it? How it was first developed?

    In any case, wikipedia and Google can surely help.

    Greetings,
    Nepomuk

    Comment

    • Ahmedhussain
      New Member
      • Dec 2008
      • 79

      #3
      I ll beneeding the introduction as well as the implementation. .

      So the basic question is : What is it?
      2)Why should we be using it?
      3)How can this help us in normal life?
      4)What are the advantages?

      And then I My self need to know the implementation if possible...

      Thank you ,

      Regards,
      Syed Ahmed Hussain

      Comment

      • Nepomuk
        Recognized Expert Specialist
        • Aug 2007
        • 3111

        #4
        Well, the two links I posted earlier should certainly help. Apart from those, you may want to look at this and this.

        For more information, I'd recommend searching for words like "thumb impression" and "fingerprin t" with extra words like "advantages " or "implementation ". I'm sure, you'll find loads of sources that way.

        After searching for a while, I found this page that links to a few fingerprint-reading-drivers, that were implemented under free licences, so you can have a look at the source code. Don't know, if that will help you, but it might.

        Greetings,
        Nepomuk

        Comment

        • Ahmedhussain
          New Member
          • Dec 2008
          • 79

          #5
          Thank you very much. All the stuff that you provided is very usefull.
          However I want some more in correspondence of Mobile phone Security purposes.

          Thank you,

          Regards,
          Syed Ahmed Hussain

          Comment

          • Nepomuk
            Recognized Expert Specialist
            • Aug 2007
            • 3111

            #6
            Phew, I guess you'll have to search on Google then, maybe add a phrase or two to the search. I did find this paper, which looks interesting, but you'll have to pay 25$ if you want it. There might well be loads of free information somewhere, but it's up to you to find it.

            Greetings,
            Nepomuk

            Comment

            • Ahmedhussain
              New Member
              • Dec 2008
              • 79

              #7
              lollz....

              I appreciate your efforts.

              Thank you very much :)

              Regards,
              Syed Ahmed Hussain

              Comment

              • Nepomuk
                Recognized Expert Specialist
                • Aug 2007
                • 3111

                #8
                You're welcome of course! :-)

                Greetings,
                Nepomuk

                Comment

                • satiss7pwr
                  New Member
                  • Jan 2010
                  • 41

                  #9
                  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...