recognizeFile method
Performs OCR on an image file specified by filename
.
Returns a list of OCR results, each represented as a list of OcrLine for text regions found in the image.
Implementation
@override
Future<List<List<OcrLine>>?> recognizeFile(String filename) async {
return _cvm.recognizeFile(filename);
}