M

最小囲いボックス

MBB

最小境界ボックスは、2Dまたは3D空間内の与えられた形状や点の集合を完全に囲むことができる最も小さな長方形または箱です。

その 最小囲いボックス (MBB) is a geometric concept used in both 2D and 3D spatial analysis to define the smallest rectangle or box that can entirely enclose a given shape, set of points, or object. In 2D, this is typically represented as a rectangle aligned with the coordinate axes, while in 3D, it takes the form of a rectangular prism (or cuboid).

The primary purpose of the Minimum Bounding Box is to simplify calculations related to spatial relationships, such as collision detection, 物体認識, and spatial indexing. By enclosing a complex shape within a simpler geometric form, algorithms can perform more efficient computations. For instance, in コンピュータグラフィックス and コンピュータビジョン, MBBs are often used to quickly determine whether two objects might intersect without needing to analyze their detailed geometries.

最小外接矩形を計算するには、通常、形状の極値点—これらは各軸に沿った最小および最大の座標です—を特定します。次に、これらの点からMBBの寸法を導き出します。軸に沿っていない外接矩形の場合、回転や変換を伴うより複雑な計算が必要となり、最適な向きを決定して囲む箱の面積や体積を最小化します。

In summary, the Minimum Bounding Box is a fundamental tool in various fields such as computer graphics, computer vision, and geographic 情報システム (GIS)では、空間データの効率的な処理と分析を促進します。

コントロール + /