@red-mobile/cordova-plugin-mlkit
v1.0.2
Published
Cordova plugin for MLKit
Downloads
37
Maintainers
Readme
cordova-plugin-mlkit
Cordova plugin for MLKit
Installation
Run:
cordova plugin add @red-mobile@cordova-plugin-mlkit
Usage
Text recognition
//FILE_URI: File URI or Base64 Format
MLkit.onDeviceTextRecognizer(FILE_URI,
(text) => {
console.log(text);
},
(error) => {
console.error(error);;
})
})
Barcode detector
//FILE_URI: File URI or Base64 Format
MLKit.barcodeDetector(FILE_URI,
(json) => {
console.log(json);
},
(error) => {
console.error(error);;
})
})
Image Labeler
//FILE_URI: File URI or Base64 Format
MLKit.imageLabeler(FILE_URI,
(json) => {
console.log(json);
},
(error) => {
console.error(error);;
})
})
Support
| | Android | iOS | | --------------------------- | ------- | --- | | Text recognition | X | | | Face detection | | | | Barcode scanning | X | | | Image labeling | X | | | Object detection & tracking | | | | Landmark recognition | | |