Package 

Class DefaultDCScanner

  • All Implemented Interfaces:
    io.scanbot.sdk.dcscanner.DCScanner

    
    public final class DefaultDCScanner
     implements DCScanner
                        

    Performs detection and recognition of DC data

    • Constructor Summary

      Constructors 
      Constructor Description
      DefaultDCScanner(BlobManager blobManager)
    • Method Summary

      Modifier and Type Method Description
      DisabilityCertificateRecognizerResultInfo recognizeDC(ByteArray nv21, Integer width, Integer height, Integer orientation) Performs DC page detection and data recognition on the NV21 format image.
      DisabilityCertificateRecognizerResultInfo recognizeDCBGR(ByteArray bgr, Integer width, Integer height, Integer orientation) Performs DC page detection and data recognition on the BGR format image.
      DisabilityCertificateRecognizerResultInfo recognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation) Performs DC data recognition on the JPEG image.
      DisabilityCertificateRecognizerResultInfo recognizeDCBitmap(Bitmap image, Integer orientation) Performs DC data recognition on the Bitmap.
      DisabilityCertificateRecognizerResultInfo detectAndRecognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation) Performs DC page detection and data recognition on the JPEG image.
      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
    • Constructor Detail

      • DefaultDCScanner

        DefaultDCScanner(BlobManager blobManager)
    • Method Detail

      • recognizeDC

         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

         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

         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

         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

         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

         DisabilityCertificateRecognizerResultInfo detectAndRecognizeDCBitmap(Bitmap image, Integer orientation)

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