BoundingBoxType enum

Denotes how a bounding box is represented.

Inheritance

Constructors

BoundingBoxType()
const

Values

BOUNDARIES → const BoundingBoxType

Represents the bounding box by using the combination of boundaries, left, top, right, bottom . The default order is left, top, right, bottom . Other orders can be indicated by an index list.

UPPER_LEFT → const BoundingBoxType

Represents the bounding box by using the upper_left corner, width and height. The default order is upper_left_x, upper_left_y, width, height . Other orders can be indicated by an index list.

CENTER → const BoundingBoxType

Represents the bounding box by using the center of the box, width and height. The default order is center_x, center_y, width, height . Other orders can be indicated by an index list.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<BoundingBoxType>
A constant List of the values in this enum, in order of their declaration.