tesseractOnImage abstract method

Future<List<Map<String, dynamic>>> tesseractOnImage({
  1. required Uint8List bytesList,
})

tesseractOnImage accept a byte as input and return a List<Map<String, dynamic>.

where map is mapped as follows:

   "text": String
   "word_conf": List:int
   "mean_conf": int
}```

args: [bytesList] - image as byte

Implementation

Future<List<Map<String, dynamic>>> tesseractOnImage(
    {required Uint8List bytesList});