LocalizedObjectAnnotation constructor
- {required String mid,
- required String name,
- double? score,
- 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);