-
public interface DCScannerPerforms detection and recognition of disability certificate data
-
-
Method Summary
Modifier and Type Method Description abstract DisabilityCertificateRecognizerResultInforecognizeDC(ByteArray nv21, Integer width, Integer height, Integer orientation)Performs DC page detection and data recognition on the NV21 format image. abstract DisabilityCertificateRecognizerResultInforecognizeDCBGR(ByteArray bgr, Integer width, Integer height, Integer orientation)Performs DC page detection and data recognition on the BGR format image. abstract DisabilityCertificateRecognizerResultInforecognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation)Performs DC data recognition on the JPEG image. abstract DisabilityCertificateRecognizerResultInforecognizeDCBitmap(Bitmap image, Integer orientation)Performs DC data recognition on the Bitmap. abstract DisabilityCertificateRecognizerResultInfodetectAndRecognizeDCJPEG(ByteArray image, Integer width, Integer height, Integer orientation)Performs DC page detection and data recognition on the JPEG image. abstract DisabilityCertificateRecognizerResultInfodetectAndRecognizeDCBitmap(Bitmap image, Integer orientation)Performs DC page detection and data recognition on the Bitmap. -
-
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.
-
-
-
-