detectWithPixels method
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,
);
}