procrustes_align — SHAPESTAT procrustes op

데이터 종류: points × pointspoints

호출: import fullseye as fs; fs.ledger.procrustes_align(source, target, scaling: 'bool' = True, reflection: 'bool' = False)(구현을 직접 호출하려면 import shapestats; shapestats.procrustes_align(source, target, scaling: 'bool' = True, reflection: 'bool' = False), 원장에서 가져오려면 opsshapestat.get("procrustes_align"))

사용법

> 이 연산자의 설명은 아직 번역이 없습니다. 원문을 그대로 싣습니다.

*source* を *target* に重ねた点。→ `(N, 3)(:func:procrustes_fit` の適用)。

`M = procrustes_fit(source, target, scaling, reflection)` を求め、

`source @ M[:3, :3].T + M[:3, 3]` を返す。変換は重心合わせ + SVD による回転

(+ 任意でスケール)の相似変換で、i 番目どうしが対応していることが前提。

対応の無い点群を渡しても例外は出ず、意味の無い配置が返る(その場合は

ICP 系の登録を使う)。

• `source, target: (N, 3)、同じ N、有限。N = 1` でも通る(並進のみ)。

• `scaling=True: 大きさの違いも吸収する。False` なら剛体変換。

`source` が全点同一(広がり 0)のときスケールは 1 のまま。

• `reflection=False(既定): det(R) = +1 を強制。True` にすると鏡像も

許す ―― 左右非対称性を測る用途では消えてしまうので通常は既定のまま。

• 返り値: `(N, 3) float64。残差を数値で欲しいなら procrustes_distance`、

変換行列そのものは `procrustes_fit`。

• 失敗: `ValueError(形が (N, 3) でない、N` 不一致、非有限)。

多数の形を同時に揃えるなら `generalized_procrustes`。

자세한 사용 가이드

shape_statistics 패밀리 가이드

참고(샘플 데이터·문헌)

• 샘플 데이터 카탈로그(DL URL / 라이선스) —— 2-D 는 skimage.data(BSD/public)+ 합성, 3-D 는 실데이터 소스(Stanford/PDS 등)의 DL URL.

• 연산자의 내력·참고문헌 —— 이 연산자 족의 바탕이 된 연구/기법의 출처.

• 알고리즘의 정전(저자·연도)과 용도는 위의 패밀리 사용 가이드에 적혀 있습니다.

실행 가능한 예제(이 연산자를 실제로 호출하는 검증된 샘플)

shapestat_landmark_tourpy -3.11 examples/shapestat_landmark_tour.py

타입이 이어지는 다음 연산자(points 를 입력으로 받는 것)

shape_perturb · procrustes_fit · procrustes_distance · shape_project · shape_mahalanobis · mirror_plane_from_pairs · landmark_asymmetry · signed_surface_distance

같은 카테고리(procrustes)

procrustes_fit · procrustes_distance · generalized_procrustes · shape_mean


*Provenance: shapestats.py — SHAPESTAT 연산자 레지스트리. 이 op 노트는 tools/opdocs.py md 가 자동 생성합니다(직접 편집하지 마세요).*

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