LocalizedObjectAnnotation constructor

LocalizedObjectAnnotation(
  1. {required String mid,
  2. required String name,
  3. double? score,
  4. BoundingPoly? boundingPoly}
)

Score of the result. Range [0, 1]. Image region to which this object belongs. This must be populated.

Implementation

// final double score;

/// Image region to which this object belongs. This must be populated.
// BoundingPoly? boundingPoly;

LocalizedObjectAnnotation(
    {required this.mid, required this.name, super.score, super.boundingPoly})
    : super(isLocalized: true, description: name);