ocrFromImage method

Future<String?> ocrFromImage(
  1. String imagePath
)

Run OCR on a static image file. Returns recognized text.

Implementation

Future<String?> ocrFromImage(String imagePath) {
  throw UnimplementedError('ocrFromImage() has not been implemented.');
}