detectWithImagePath method

Pointer<Char> detectWithImagePath(
  1. Pointer<Char> image_path,
  2. double prob_threshold,
  3. double nms_threshold,
  4. int target_size,
)

Implementation

ffi.Pointer<ffi.Char> detectWithImagePath(
  ffi.Pointer<ffi.Char> image_path,
  double prob_threshold,
  double nms_threshold,
  int target_size,
) {
  return _detectWithImagePath(
    image_path,
    prob_threshold,
    nms_threshold,
    target_size,
  );
}