points_to_gaussians — REPRCONV gaussians op

数据种类:pointsgaussians

调用:import reprconv; reprconv.points_to_gaussians(points, k=6, scale=1.0)(或 opsreprconv.get("points_to_gaussians"))

用法

点群 `(N,3) → 各向同性的 gaussians`。该类型的唯一入口

> 以下的详细说明为原文 —— 摘要与标题已翻译。

`gaussians は台帳で fuse3d.to_points` が食う型だが、**産む op が

1 つも無かった**(実測)—— 消費側だけがある型は、生成器を種として置かない限り

一度も実行されない。ここでは 3D Gaussian Splatting の初期化と同じやり方で

作る: 各点の k 近傍までの平均距離を sigma、重みを 1/N の等分にする。

`mu は入力点そのものなので :func:gaussians_to_points` と往復して

bit 一致(実測 max|Δ| = 0.0)。sigma と w は往復で戻らない —— 点群には

もともと無かった量だからで、これは損失ではなく追加である。

Args:

points: (N, 3)。N >= 2。

k: sigma を決める近傍数(既定 6)。N-1 を超えると N-1 に丸める。

scale: sigma に掛ける係数(既定 1.0)。

Returns:

dict(`mu (N,3) / sigma (N,) / w` (N,))。

Raises:

ValueError: N < 2 / k < 1 / scale <= 0 / 形状不正 / 非有限。

参考(示例数据・文献)

• 示例数据目录(下载 URL / 许可证) —— 2-D 用 skimage.data(BSD/公有领域)加合成图,3-D 给出真实数据源(Stanford/PDS 等)的下载 URL。

• 算子来历与参考文献 —— 该算子族所依据的研究/方法出处。

• 算法的正典(作者・年份)与用途见上面的族使用指南

可运行的示例(实际调用该算子并已验证的样例)

representation_roundtrippy -3.11 examples/representation_roundtrip.py

类型可衔接的下一个算子(可接受 gaussians 作为输入)

gaussians_to_points · gaussians_to_voxel

同类别(gaussians)

gaussians_to_points · gaussians_to_voxel


*Provenance: reprconv.py — REPRCONV 算子登记表。本条目由 tools/opdocs.py md 自动生成(请勿手工编辑)。*

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