detectTextFromPath method

Pointer<Char> detectTextFromPath(
  1. Pointer<Char> imgPath,
  2. double threshold
)

Detect text regions only (without recognition)

Implementation

ffi.Pointer<ffi.Char> detectTextFromPath(
    ffi.Pointer<ffi.Char> imgPath, double threshold) {
  return _detectTextFromPath(imgPath, threshold);
}