v0.4.30flutter_tesseract_ocr
Tesseract 4 adds a new neural net (LSTM) based OCR engine which is focused on line recognition. It has unicode (UTF-8) support, and can recognize more than 100 languages.
Tesseract OCR for flutter
{"sdk":"flutter"}^2.1.4^1.9.0{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
Fork note (onestudi0/tesseract_ocr): This fork exists solely to fix
android/build.gradle, which still declares the defunctjcenter()repository — current Gradle rejects thejcenter()DSL method outright, so upstream fails to build at all as of this writing. This fork replaces it withmavenCentral(). No other changes. If upstream (khjde1207/tesseract_ocr) ever merges an equivalent fix, switch back to the pub.dev release and drop thedependency_overridespointing here.
Tesseract OCR 4.0 for flutter This plugin is based on Tesseract OCR 4 This plugin uses Tesseract4Android and SwiftyTesseract.
https://pub.dev/packages/google_ml_kit
Tesseract is slower than ml_kit.
Consider whether you should use Tesseract
https://raw.github.com/khjde1207/tesseract_ocr/master/example.gif
dev_dependencies:
...
flutter_tesseract_ocr:
./web/index.html
use https://www.npmjs.com/package/tesseract.js/v/v4.0.2
<body>
<script src='https://unpkg.com/tesseract.js@v4.0.2/dist/tesseract.min.js'></script>
<script>
async function _extractText(imagePath , mapData){
var worker = await Tesseract.createWorker();
await worker.load();
await worker.loadLanguage(mapData.language)
await worker.initialize(mapData.language)
await worker.setParameters(mapData.args)
var rtn = await worker.recognize(imagePath, {}, worker.id);
await worker.terminate();
if(mapData.args["tessjs_create_hocr"]){
return rtn.data.hocr;
}
return rtn.data.text;
}
</script>
...
..
.
</body>
You must add trained data and trained data config file to your assets directory. You can find additional language trained data files here Trained language files
add tessdata folder under assets folder, add tessdata_config.json file under assets folder:
{
"files": [
"eng.traineddata",
"<other_language>.traineddata"
]
}
Plugin assumes you have tessdata folder in your assets directory and defined in your pubspec.yaml
Check the contents of example/assets folder and example/pubspec.yaml
Initialization of SwiftyTesseract has failed
Just drag tessdata folder from asset to place under Runner folder in xcode add as a reference then it will work.
Using is very simple:
//args support android / Web , i don't have a mac
String text = await FlutterTesseractOcr.extractText('/path/to/image', language: 'kor+eng',
args: {
"psm": "4",
"preserve_interword_spaces": "1",
});
You can leave language empty, it will default to `'eng'.
//---- dynamic add Tessdata (Android)---- ▼
// https://github.com/tesseract-ocr/tessdata/raw/main/dan_frak.traineddata
HttpClient httpClient = new HttpClient();
HttpClientRequest request = await httpClient.getUrl(Uri.parse(
'https://github.com/tesseract-ocr/tessdata/raw/main/${langName}.traineddata'));
HttpClientResponse response = await request.close();
Uint8List bytes =await consolidateHttpClientResponseBytes(response);
String dir = await FlutterTesseractOcr.getTessdataPath();
print('$dir/${langName}.traineddata');
File file = new File('$dir/${langName}.traineddata');
await file.writeAsBytes(bytes);
//---- dynamic add Tessdata ---- ▲