recognize method

Future<List<OcrResult>> recognize(
  1. Object handle,
  2. Uint8List imageBytes, {
  3. int maxSideLen = 960,
  4. bool runDetection = true,
  5. bool runClassification = false,
  6. bool runRecognition = true,
})

Runs OCR on an image encoded in a browser/native-decodable format.

Implementation

Future<List<OcrResult>> recognize(
  Object handle,
  Uint8List imageBytes, {
  int maxSideLen = 960,
  bool runDetection = true,
  bool runClassification = false,
  bool runRecognition = true,
}) {
  throw UnimplementedError('recognize() has not been implemented.');
}