├── .github └── workflows │ └── npm-publish.yml ├── LICENSE ├── README.md ├── package.json ├── plugin.xml ├── src ├── android │ └── Textocr.java └── ios │ ├── Textocr.h │ └── Textocr.m └── www └── rectext.js /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/Textocr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/src/android/Textocr.java -------------------------------------------------------------------------------- /src/ios/Textocr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/src/ios/Textocr.h -------------------------------------------------------------------------------- /src/ios/Textocr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/src/ios/Textocr.m -------------------------------------------------------------------------------- /www/rectext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/HEAD/www/rectext.js --------------------------------------------------------------------------------