detectWithPixels method

Pointer<Char> detectWithPixels(
  1. Pointer<UnsignedChar> pixels,
  2. int pixelType,
  3. int width,
  4. int height,
  5. double prob_threshold,
  6. double nms_threshold,
  7. int target_size,
)

Implementation

ffi.Pointer<ffi.Char> detectWithPixels(
  ffi.Pointer<ffi.UnsignedChar> pixels,
  int pixelType,
  int width,
  int height,
  double prob_threshold,
  double nms_threshold,
  int target_size,
) {
  return _detectWithPixels(
    pixels,
    pixelType,
    width,
    height,
    prob_threshold,
    nms_threshold,
    target_size,
  );
}