SegmentationMask constructor

SegmentationMask({
  1. required int width,
  2. required int height,
  3. List confidences = const [],
})

Implementation

SegmentationMask({
  required this.width,
  required this.height,
  this.confidences = const [],
});