-
- 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 DisabilityCertificateRecognizerResultInforecognizeDC(ByteArray nv21, Integer width, Integer height, Integer orientation)Performs DC page detection and data recognition on the NV21 format image. DisabilityCertificateRecognizerResultInforecognizeDCBGR(ByteArray bgr, Integer width, Integer height, Integer orientation)Performs DC page detection and data recognition on the BGR format image. DisabilityCertificateRecognizerResultInforecognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation)Performs DC data recognition on the JPEG image. DisabilityCertificateRecognizerResultInforecognizeDCBitmap(Bitmap image, Integer orientation)Performs DC data recognition on the Bitmap. DisabilityCertificateRecognizerResultInfodetectAndRecognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation)Performs DC page detection and data recognition on the JPEG image. DisabilityCertificateRecognizerResultInfodetectAndRecognizeDCBitmap(Bitmap image, Integer orientation)Performs DC page detection and data recognition on the Bitmap. -
-
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.
-
-
-
-