Last updated:
0 purchases
ocr data extractor
A Flutter package uses ocrkit for processing its output.
Features #
Image texts extracted and processed to return the special data wanted.
Just pass the image path to the chosen function.
Getting started #
add the following code to your podfile
platform :ios, '10.0'
Usage #
The code below extracts all numbers of an image which have 6 or more digits and removes time and date.
List<String> numbers = await OCRController().getNumberList(pickedFile!.path);
copied to clipboard
The code below extracts all names of an image in a flight list and extracts details of it.
Takes a List
dynamic passengers = await OCRController().getNamesList(pickedFile.path, names, 0);
copied to clipboard
Additional information #
This package is most used for personal operations
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.