recognizeByBuffer method

  1. @override
Future<List<List<MrzLine>>?> recognizeByBuffer(
  1. Uint8List bytes,
  2. int width,
  3. int height,
  4. int stride,
  5. int format,
)
override

Recognize MRZ from a buffer bytes is the buffer width is the width of the image height is the height of the image stride is the stride of the image format is the format of the image Returns a list of MRZ lines

Implementation

@override
Future<List<List<MrzLine>>?> recognizeByBuffer(
    Uint8List bytes, int width, int height, int stride, int format) async {
  return _dlrManager.recognizeByBuffer(bytes, width, height, stride, format);
}