recognizeByBuffer method
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);
}