typed op• Data kinds: points → points
• Call: fullseye.apply(img, "tb_mls_smooth", a=0.5, b=0.5) (the 2-D model is one image plus two scalar knobs a,b∈[0,1])
*No figure: this op takes points as input. A Studio program starting from an image cannot reach that type — see the runnable examples below for how it is used.*
Projects each point onto a local polynomial surface to remove noise (Moving Least Squares smoothing).
> The detailed description below is the original text — the summary and the headings are translated.
点ごとに半径 `radius` 内の近傍を集め、重み付き PCA で局所平面(法線 n と接平面の
2 軸)を推定し、近傍の「接平面上座標 (u,v) → 法線方向の高さ h」に order 次の
多項式曲面をガウス重み付き最小二乗で当てはめる。注目点自身は局所座標の原点 (0,0)
にあたるので、当てはめた曲面の (0,0) での高さ(= 定数項)ぶんだけ法線方向へ動かして
曲面上へ射影する。面の形は保ったままセンサノイズだけを均せる。
Parameters
----------
points : array_like, shape (N, 3)
入力点群。
radius : float
近傍球の半径(> 0)。局所曲面のサポート。
order : int
局所多項式の次数(既定 2)。項数は (order+1)(order+2)/2。
Returns
-------
ndarray, shape (N, 3)
平滑後の点群(順序・点数は保持)。近傍が多項式の項数に満たない点は原位置のまま。
Notes
-----
近似手法である。近傍数が項数未満/局所平面が縮退する点は動かさず原位置を維持する
(穴や境界で暴れないための安全策)。`radius <= 0` は ValueError、空入力は空を返す。
2-D 進化レジストリへ橋渡しした 3d の op `mls_smooth。実装は同じで、呼び出し規約だけ op(v, a, b) に合わせてある。a が order(既定 2)を振る。b` は未使用。
• Sample-data catalog (download URLs / licences) — 2-D uses skimage.data (BSD/public domain) plus synthetic images; 3-D lists download URLs for real data sources (Stanford, PDS, …).
• Operator provenance and references — the sources of the research/methods this op family came from.
• (none yet)
points as input)identity · tb_points_to_voxel · tb_estimate_point_normals · tb_iss_keypoints · tb_angle_3points · tb_project_points · tb_render_point_depth · tb_statistical_outlier_removal
typed)tb_points_to_voxel · tb_estimate_point_normals · tb_iss_keypoints · tb_angle_3points · tb_project_points · tb_render_point_depth · tb_statistical_outlier_removal · tb_radius_outlier_removal
*Provenance: ops.py — 2D operator registry. This per-op note is generated by tools/opdocs.py md (do not hand-edit).*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.