detectFromBytes method

Future<List<DetectionResult>> detectFromBytes({
  1. required Uint8List data,
  2. required int width,
  3. required int height,
})

Run detection on raw RGBA pixel bytes (e.g., from camera frame).

Implementation

Future<List<DetectionResult>> detectFromBytes({required Uint8List data, required int width, required int height}) {
  throw UnimplementedError('detectFromBytes() has not been implemented.');
}