PreprocessedFrame constructor

const PreprocessedFrame({
  1. required Uint8List bytes,
  2. required int width,
  3. required int height,
  4. required String strategyName,
  5. List<String> stepsApplied = const [],
  6. required PreprocessingMetrics metrics,
})

Implementation

const PreprocessedFrame({
  required this.bytes,
  required this.width,
  required this.height,
  required this.strategyName,
  this.stepsApplied = const [],
  required this.metrics,
});