detectLayout method

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

Detect layout from image file path char* detectLayout(const char* img_path, float conf_threshold)

Implementation

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