detectLayout method

Pointer<Char> detectLayout(
  1. Pointer<Char> imgPath,
  2. double confThreshold
)

Detect layout from image file path

Implementation

ffi.Pointer<ffi.Char> detectLayout(
    ffi.Pointer<ffi.Char> imgPath, double confThreshold) {
  return _detectLayout(imgPath, confThreshold);
}