moment_invariant op• Datenarten: points → table
• Aufruf: import fullseye as fs; fs.ledger.central_moments(points, max_order: 'int' = 3) -> 'dict' (die Implementierung direkt: import moments3d; moments3d.central_moments(points, max_order: 'int' = 3) -> 'dict'; aus dem Register: ops3d.get("central_moments"))
Die auf den Schwerpunkt bezogenen zentralen Momente μ_{pqr} (translationsinvariant; Schlüssel sind (p,q,r)).
> Die ausführliche Beschreibung unten ist der Originaltext — Zusammenfassung und Überschriften sind übersetzt.
μ_{pqr} = mean( (x-x̄)^p (y-ȳ)^q (z-z̄)^r )。p+q+r <= max_order の全次数を含む。
重心を引いてから計算するので平行移動に厳密に不変。等質量規約なので
μ_{000}=1、1 次モーメント μ_{100}=μ_{010}=μ_{001}=0(中心化の帰結)。
Parameters
----------
points : array_like, shape (N, 3)
点群。
max_order : int
含める最大次数 p+q+r(既定 3)。0 以上。
Returns
-------
dict[tuple[int, int, int], float]
(p, q, r) -> μ_{pqr}。
補足:
• 返る dict のキー数は p+q+r <= max_order の全組合せ(`max_order=3` で 20 個)。値は float(平均なので点数で割ってある)。
• 単位は長さ^(p+q+r)。並進不変だが回転・スケールには不変でない(回転不変量は `moment_invariants / principal_moments`)。
• 2 次モーメント `(2,0,0), (1,1,0) などは母共分散(N で割る)そのもので、inertia_tensor` の素材と同じ。
• 高次は重心から遠い点が支配するので外れ値に弱い。前段で `statistical_outlier_removal` などを検討する。
• 入力は (N,3)、N >= 1。`max_order < 0、形状不正、非有限は ValueError`。決定論的。
• Katalog der Beispieldaten (Download-URLs / Lizenzen) — 2-D nutzt skimage.data (BSD/Public Domain) plus synthetische Bilder, 3-D nennt Download-URLs echter Datenquellen (Stanford, PDS, …).
• Herkunft und Literatur der Operatoren — die Quellen der Forschung/Verfahren, auf denen diese Operatorfamilie beruht.
• moment_invariants — py -3.11 examples_3d/moment_invariants.py
table als Eingabe)fuse_to_voxel · mesh_select_lod
moment_invariant)moment_invariants · principal_moments · inertia_tensor
*Provenance: moments3d.py — 3D Operator-Registry. Diese Notiz wird von tools/opdocs.py md erzeugt (nicht von Hand bearbeiten).*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.