YOLOResult constructor

YOLOResult({
  1. required int classIndex,
  2. required String className,
  3. required double confidence,
  4. required Rect boundingBox,
  5. required Rect normalizedBox,
  6. List<List<double>>? mask,
  7. List<Point>? keypoints,
  8. List<double>? keypointConfidences,
})

Implementation

YOLOResult({
  required this.classIndex,
  required this.className,
  required this.confidence,
  required this.boundingBox,
  required this.normalizedBox,
  this.mask,
  this.keypoints,
  this.keypointConfidences,
});