analyze_frame method

Pointer<Char> analyze_frame(
  1. Pointer<Void> engine,
  2. Pointer<Uint8> image_data,
  3. int width,
  4. int height,
  5. int format,
  6. int rotation,
  7. int crop_x,
  8. int crop_y,
  9. int crop_w,
  10. int crop_h,
)

Analyze a single frame

Implementation

ffi.Pointer<ffi.Char> analyze_frame(
  ffi.Pointer<ffi.Void> engine,
  ffi.Pointer<ffi.Uint8> image_data,
  int width,
  int height,
  int format,
  int rotation,
  int crop_x,
  int crop_y,
  int crop_w,
  int crop_h,
) {
  return _analyze_frame(engine, image_data, width, height, format, rotation,
      crop_x, crop_y, crop_w, crop_h);
}