fullseye

aabb — 3D bounds op

使い方

Axis-aligned bounding box. Returns (min (3,), max (3,)).

点群の各軸の最小値と最大値をそのまま返す(P.min(0), P.max(0))。返り値は 2 つの (3,) float64 配列で、順に (xmin, ymin, zmin)(xmax, ymax, zmax)(軸の並びは入力の列順)。 箱の大きさは max - min、中心は (min + max) / 2。単位は座標の単位。

用途: voxel 化(occupancy_grid / points_to_voxelbounds)の領域決め、 obb(PCA で向きを合わせた箱)との比較。軸に沿わない細長い物体では AABB は大きく余るので、 把持幅の推定には obbextents を使う。

背景知識ガイド(この op の手前にある物理・規約)

参考(サンプルデータ・文献)

実行できる例(この op を実際に呼ぶ検証済みサンプル)

型が繋がる次の op(primitive を入力に取れる)

fuse_to_voxel · angle_between_lines · angle_between_planes · angle_line_plane · distance_point_plane · distance_point_line · distance_line_line · distance_segment_segment

同カテゴリ(bounds)

convex_hull · obb · min_enclosing_sphere


Provenance: pcseg.py — 3D operator registry. この per-op ノートは tools/opdocs.py md が自動生成(手編集しない)。

© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.