Ejemplo n.º 1
0
 /// <summary>
 /// Stop the capture of a image of a fingerprint by the device reader and is showed by a Image WPF. </summary>
 /// <returns>
 /// Parameter type picturebox </returns>
 public void StopCaptureFingerprintWPF()
 {
     if (objCapturaHuellaWPF != null)
     {
         objCapturaHuellaWPF.StopCaptures();
         objCapturaHuellaWPF = null;
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Set the image of a fingerprint captured by the device reader and is showed by a Image WPF. </summary>
 /// <returns>
 /// Parameter type picturebox </returns>
 public void CaptureFingerprintWPF(Reader objReader, System.Windows.Controls.Image imgFingerPrint)
 {
     objCapturaHuellaWPF = new CapturaHuellaWPF.Metodos(objReader, imgFingerPrint);
     objCapturaHuellaWPF.StartCaptures();
 }