recognizeTextFromPath method

Pointer<Char> recognizeTextFromPath(
  1. Pointer<Char> imgPath,
  2. double detThreshold,
  3. double recThreshold
)

Recognize text from image file path (full OCR: detect + recognize)

Implementation

ffi.Pointer<ffi.Char> recognizeTextFromPath(
    ffi.Pointer<ffi.Char> imgPath, double detThreshold, double recThreshold) {
  return _recognizeTextFromPath(imgPath, detThreshold, recThreshold);
}