OCR Recognition
Overview
- The OCR module performs image recognition
- The OCR module object prefix is
ocr, e.g.ocr.initOcr() - Current OCR engines include ocrLite, TesseractOCR, paddleocr, and paddleOcrOnnxV4
ocr.newOcr Create an OCR Instance
- Create an OCR instance
function main() {
let o = ocr.newOcr();
// Initialize and recognize here
o.releaseAll()
}