segment op• 資料種類:points → labels
• 呼叫: import fullseye as fs; fs.ledger.euclidean_cluster(points, tol: 'float', min_size: 'int' = 10) -> 'np.ndarray'(要直接呼叫實作,import segment3d; segment3d.euclidean_cluster(points, tol: 'float', min_size: 'int' = 10) -> 'np.ndarray';從台帳取用則 ops3d.get("euclidean_cluster"))
按半徑 tol 的鄰接圖連通成分做距離分群(−1=雜訊)。
> 以下的詳細說明為原文 —— 摘要與標題已翻譯。
互いに `tol` 以内の点を(推移的に)同一クラスタへ束ねる。空間的に離れた物体が
別クラスタになる(接地面除去後の「どの塊が掴める物か」の分離に使う)。連結成分のうち
`min_size` 未満のものはノイズとして -1。ラベルはクラスタサイズ降順で 0,1,2,...
(決定論)。
Args:
points: (N,3) 点群。
tol: 同一クラスタとみなす近接半径(距離、要 > 0)。
min_size: これ未満の連結成分はノイズ(-1)。
Returns:
labels: (N,) int。0..(n_clusters-1) がクラスタ、-1 がノイズ。空入力は shape (0,)。
• 範例資料目錄(下載 URL / 授權) —— 2-D 用 skimage.data(BSD/公有領域)加合成圖,3-D 給出真實資料源(Stanford/PDS 等)的下載 URL。
• 運算子來歷與參考文獻 —— 該運算子族所依據的研究/方法出處。
• object_segmentation — py -3.11 examples_3d/object_segmentation.py
labels 作為輸入)fuse_to_voxel · vol_region_props
segment)region_growing · plane_segmentation · vol_watershed
*Provenance: segment3d.py — 3D 運算子登記表。本條目由 tools/opdocs.py md 自動產生(請勿手動編輯)。*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.