initOcrModels method

void initOcrModels(
  1. Pointer<Char> detModelPath,
  2. Pointer<Char> recModelPath,
  3. Pointer<Char> dictPath
)

Initialize OCR models (detection + recognition + dictionary)

Implementation

void initOcrModels(
    ffi.Pointer<ffi.Char> detModelPath,
    ffi.Pointer<ffi.Char> recModelPath,
    ffi.Pointer<ffi.Char> dictPath) {
  return _initOcrModels(detModelPath, recModelPath, dictPath);
}