Click here to Skip to main content
15,881,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
VB
err = m_SecuBSP.Capture(FIRPurpose.VERIFY)
       If (err = BSPError.ERROR_NONE) Then
           m_CaptureFIRText = m_SecuBSP.FIRTextData
       End If

       DisplaySecuBSPErrMsg("Capture", err)


       Dim MyHandle As IntPtr = fpWindow.Handle

       'Or to get the image from the PictureBox

       Dim MyImage As Image = fpWindow.Image
       PictureBox1.Image = MyImage


What I have tried:

VB
err = m_SecuBSP.Capture(FIRPurpose.VERIFY)
      If (err = BSPError.ERROR_NONE) Then
          m_CaptureFIRText = m_SecuBSP.FIRTextData
      End If

      DisplaySecuBSPErrMsg("Capture", err)


      Dim MyHandle As IntPtr = fpWindow.Handle

      'Or to get the image from the PictureBox

      Dim MyImage As Image = fpWindow.Image
      PictureBox1.Image = MyImage
Posted
Updated 28-Jul-18 10:16am
v2
Comments
Member 11973817 30-Jul-18 0:33am    
so any idea how to save this 'm_SecuBSP.FIRTextData' data as a image form ?
there is no any option ?

1 solution

As far as I know, you can't.

The string is a summary of the identifiable parts of the print, essentially, it's a hash of the feature data. It can't be used to rebuild an image of the fingerprint.

For further information on the SDK, you're going to have to ask SecuGen support.
 
Share this answer
 
v2
Comments
Member 11973817 30-Jul-18 0:33am    
so any idea how to save this 'm_SecuBSP.FIRTextData' data as a image form ?
there is no any option ?
i want to display image any ways
Dave Kreskowiak 30-Jul-18 9:10am    
Again, AS FAR AS I KNOW, what you're dealing with is a LOSSY HASH of the data. A hash is a summary of the data that loses the original data and cannot be used to get the original data back.

There is no way to create an image from that hash.

Again, AS FAR AS I KNOW. I know nothing about the library you're using, so your BEST SOURCE of information is going to be the manufacturer of the library and its documentation.
Member 11973817 1-Aug-18 8:39am    
i m used secuBSPMx.net

---- my code is below ---------

Dim err As BSPError
m_SecuBSP.CaptureWindowOption.WindowStyle = WindowStyle.INVISIBLE
m_SecuBSP.CaptureWindowOption.ShowFPImage = True
m_SecuBSP.CaptureWindowOption.ShowFPImage = True
m_SecuBSP.CaptureWindowOption.FingerWindow = pbThumb.Handle




err = m_SecuBSP.Capture(FIRPurpose.VERIFY)
If (err = BSPError.ERROR_NONE) Then
m_CaptureFIRText = m_SecuBSP.FIRTextData
End If
DisplaySecuBSPErrMsg("Capture", err)

------------------------------------------
i got string data of fingure print
now what is the process to obtain image of thumb ?
Dave Kreskowiak 1-Aug-18 8:51am    
For the last time, YOU CAN'T.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900