Bounding Box Website Links For
Minimum
 

Information About

Bounding Box




The axis-aligned minimum bounding box (MBB, AAMBB, AABB) for a set ''S'' in the ''N''- Dimension al Space endowed with a Coordinate System is the box or Hyperrectangle of minimal dimensions with its edges parallel to the Coordinate Axes that contains ''S''. More formally, the MBB is the Cartesian Product of ''N'' intervals each of which is defined by the minimal and maximal value of the corresponding coordinate for the points in ''S''.

In many contexts the qualifiers "axis-aligned" and even "minimum" may be omitted. On the other hand, the term oriented MBB is used for minimum bounding boxes that have an orientation other than parallel to the coordinate axes.

The term "box"/"hyperrectangle" comes from its usage in the Cartesian Coordinate System , where it is indeed visualized as a rectangle (two-dimensional case), Rectangular Parallelepiped (three-dimensional case), etc.

In the two-dimensional case it is called Minimum Bounding Rectangle .

Minimal bounding boxes are used to an approximate location of an object in question and as a very simple descriptor of its shape. For example, in Computational Geometry and its applications when it is required to find intersections in the set of objects, the initial check is the intersections between their MBBS. Since it is usually a much less expensive operation than the check of the actual intersection (because it only requires comparisos of coordinates), it allows to quickly exclude from checks the pairs that are far apart.


SEE ALSO