preprocess op• 資料種類:points → points
• 呼叫: import fullseye as fs; fs.ledger.radius_outlier_removal(points, radius: 'float', min_neighbors: 'int' = 8)(要直接呼叫實作,import pcl_filter; pcl_filter.radius_outlier_removal(points, radius: 'float', min_neighbors: 'int' = 8);從台帳取用則 ops3d.get("radius_outlier_removal"))
• 經台帳呼叫的回傳值: fullseye.ledger.radius_outlier_removal(...) 只回傳**宣告的 out 型別 points 的值**(底層函式還會回傳輔助資訊)。需要被捨棄的部分時,請用 fullseye.ledger.radius_outlier_removal.raw(...),或直接呼叫 pcl_filter.radius_outlier_removal。
去除半徑 radius 內鄰居數少於 min_neighbors 的點(孤立點去除)。
> 以下的詳細說明為原文 —— 摘要與標題已翻譯。
各点を中心に半径 `radius の球を張り、その中に居る他点の数が min_neighbors`
に満たない点を「孤立した粒」として落とす。統計的手法より局所的・直接的で、
センサの実スケールが分かっているときにしきい値を決めやすい。
Parameters
----------
points : array_like, shape (N, 3)
入力点群。
radius : float
近傍とみなす球の半径(> 0)。
min_neighbors : int
残すのに必要な近傍数(自分自身は数えない、既定 8)。
Returns
-------
filtered : ndarray, shape (M, 3)
生き残った点(元の順序を保持)。
keep_mask : ndarray of bool, shape (N,)
各入力点を残すか(True=残す)。
Notes
-----
`radius <= 0` は ValueError。空入力は空を返す(graceful)。
• depth_sensors — 深度センサの知識 — 測距原理・実機の値・欠測の出方
• 範例資料目錄(下載 URL / 授權) —— 2-D 用 skimage.data(BSD/公有領域)加合成圖,3-D 給出真實資料源(Stanford/PDS 等)的下載 URL。
• 運算子來歷與參考文獻 —— 該運算子族所依據的研究/方法出處。
• pcl_geodesic — py -3.11 examples_3d/pcl_geodesic.py
points 作為輸入)points_to_voxel · gaussians_to_voxel · estimate_point_normals · to_points · match_points_ncc · match_pca · moment_axes · icp_point2point_3d
preprocess)statistical_outlier_removal · voxel_grid_downsample · mls_smooth · volume_downsample
*Provenance: pcl_filter.py — 3D 運算子登記表。本條目由 tools/opdocs.py md 自動產生(請勿手動編輯)。*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.