Package 

Interface DCScanner


  • 
    public interface DCScanner
    
                        

    Performs detection and recognition of disability certificate data

    • Method Summary

      Modifier and Type Method Description
      abstract DisabilityCertificateRecognizerResultInfo recognizeDC(ByteArray nv21, Integer width, Integer height, Integer orientation) Performs DC page detection and data recognition on the NV21 format image.
      abstract DisabilityCertificateRecognizerResultInfo recognizeDCBGR(ByteArray bgr, Integer width, Integer height, Integer orientation) Performs DC page detection and data recognition on the BGR format image.
      abstract DisabilityCertificateRecognizerResultInfo recognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation) Performs DC data recognition on the JPEG image.
      abstract DisabilityCertificateRecognizerResultInfo recognizeDCBitmap(Bitmap image, Integer orientation) Performs DC data recognition on the Bitmap.
      abstract DisabilityCertificateRecognizerResultInfo detectAndRecognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation) Performs DC page detection and data recognition on the JPEG image.
      abstract DisabilityCertificateRecognizerResultInfo detectAndRecognizeDCBitmap(Bitmap image, Integer orientation) Performs DC page detection and data recognition on the Bitmap.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • recognizeDC

         abstract DisabilityCertificateRecognizerResultInfo recognizeDC(ByteArray nv21, Integer width, Integer height, Integer orientation)

        Performs DC page detection and data recognition on the NV21 format image. Input image can contain background elements.

      • recognizeDCBGR

         abstract DisabilityCertificateRecognizerResultInfo recognizeDCBGR(ByteArray bgr, Integer width, Integer height, Integer orientation)

        Performs DC page detection and data recognition on the BGR format image. Input image can contain background elements.

      • recognizeDCJPEG

         abstract DisabilityCertificateRecognizerResultInfo recognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation)

        Performs DC data recognition on the JPEG image. Input image have to be the clean image of the DC page without background elements.

      • recognizeDCBitmap

         abstract DisabilityCertificateRecognizerResultInfo recognizeDCBitmap(Bitmap image, Integer orientation)

        Performs DC data recognition on the Bitmap. Input image have to be the clean image of the DC page without background elements.

      • detectAndRecognizeDCJPEG

         abstract DisabilityCertificateRecognizerResultInfo detectAndRecognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation)

        Performs DC page detection and data recognition on the JPEG image. Input image can contain background elements.

      • detectAndRecognizeDCBitmap

         abstract DisabilityCertificateRecognizerResultInfo detectAndRecognizeDCBitmap(Bitmap image, Integer orientation)

        Performs DC page detection and data recognition on the Bitmap. Input image can contain background elements.