[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -1,82 +1,167 @@
|
||||
---
|
||||
id: wiki-2026-0508-gait-analysis-laboratory
|
||||
title: Gait Analysis Laboratory
|
||||
category: 10_Wiki/Topics_GD
|
||||
status: draft
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: []
|
||||
aliases: [Gait Lab, Motion Capture Lab, Biomechanics Lab]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.92
|
||||
tags: [uncategorized]
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [biomechanics, motion-capture, sports-science, vr, game-design]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-08
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
tech_stack:
|
||||
language: motion-capture
|
||||
framework: biomechanics
|
||||
---
|
||||
|
||||
---
|
||||
redirect_to: "[[게임_디자인_및_가상_경제_시스템]]"
|
||||
canonical_id: "wiki-2026-0507-105"
|
||||
---
|
||||
# Gait Analysis Laboratory
|
||||
|
||||
# Redirect
|
||||
## 매 한 줄
|
||||
> **"매 marker-based optical mocap + force plates + EMG 의 fusion 의 movement biomechanics 의 reconstruct"**. Gait analysis lab 매 clinical (cerebral palsy, post-stroke rehab) + sports science (running economy, ACL injury risk) + game/VR design (avatar locomotion authenticity) 의 cross 매 reference platform. 2026 매 Vicon, OptiTrack, Qualisys 매 dominant + markerless (Theia3D, OpenCap) 매 disrupting.
|
||||
|
||||
이 문서는 Canonical 문서인 통합되었습니다.
|
||||
모든 최신 지식과 세부 내용은 위 링크를 참조하십시오.
|
||||
## 매 핵심
|
||||
|
||||
### 매 Stack
|
||||
- **Optical mocap**: 매 12-24 IR cameras + retroreflective markers (Vicon Plug-in Gait, IOR).
|
||||
- **Force plates**: 매 AMTI / Kistler 매 ground reaction force.
|
||||
- **EMG**: 매 surface electrodes 매 muscle activation timing.
|
||||
- **IMU**: 매 inertial sensors 매 portable / out-of-lab.
|
||||
|
||||
> 🤖 **[AI 추론 보강 필요]** — 본문이 200자 미만이라 P-Reinforce가 빈약 stub으로 분류했습니다.
|
||||
> source_trust_level=`C` (AI 보강분), confidence_score=`0.92`로 표시되어 있습니다.
|
||||
> 사용자 검증 후 trust_level 상향 조정 가능.
|
||||
### 매 Outputs
|
||||
- **Spatiotemporal**: 매 step length, cadence, stance/swing ratio.
|
||||
- **Kinematics**: 매 joint angles (hip flex, knee flex, ankle dorsi).
|
||||
- **Kinetics**: 매 joint moments + powers (inverse dynamics).
|
||||
- **EMG envelopes**: 매 muscle activation patterns.
|
||||
|
||||
### 매 응용
|
||||
1. Clinical — cerebral palsy surgical planning (Gillette, Shriners protocols).
|
||||
2. Sports — ACL injury risk screening (Drop Vertical Jump test).
|
||||
3. Game/VR — authentic locomotion data 의 IK 또는 ML retargeting.
|
||||
4. Exergaming — 매 VR fitness app 매 user gait 의 detect 의 calibration.
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
## 💻 패턴
|
||||
|
||||
> *(TODO: 한 문장으로 핵심 통찰을 작성. "X는 Y 조건에서 Z 효과를 낸다" 구조 권장.)*
|
||||
### C3D parsing (mocap interchange format)
|
||||
```python
|
||||
import ezc3d
|
||||
import numpy as np
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
c = ezc3d.c3d('walk_trial.c3d')
|
||||
markers = c['data']['points'] # shape: (4, n_markers, n_frames)
|
||||
labels = c['parameters']['POINT']['LABELS']['value']
|
||||
rate = c['header']['points']['frame_rate']
|
||||
|
||||
**추출된 패턴:**
|
||||
> *(TODO)*
|
||||
heel_idx = labels.index('RHEE')
|
||||
heel_z = markers[2, heel_idx, :] # vertical trajectory
|
||||
```
|
||||
|
||||
**세부 내용:**
|
||||
- *(TODO)*
|
||||
### Heel-strike detection
|
||||
```python
|
||||
from scipy.signal import find_peaks
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
def detect_heel_strikes(heel_z: np.ndarray, rate: float) -> np.ndarray:
|
||||
# 매 heel marker 의 vertical low + GRF onset 의 align
|
||||
inverted = -heel_z
|
||||
peaks, _ = find_peaks(inverted, distance=int(rate * 0.5))
|
||||
return peaks # frame indices
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
heel_strikes = detect_heel_strikes(heel_z, rate)
|
||||
stride_times = np.diff(heel_strikes) / rate
|
||||
cadence = 60.0 / np.mean(stride_times)
|
||||
```
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
### Joint angle (knee flexion)
|
||||
```python
|
||||
def knee_angle(hip: np.ndarray, knee: np.ndarray, ankle: np.ndarray) -> np.ndarray:
|
||||
thigh = hip - knee # (3, n_frames)
|
||||
shank = ankle - knee
|
||||
cos_t = np.einsum('ij,ij->j', thigh, shank) / (
|
||||
np.linalg.norm(thigh, axis=0) * np.linalg.norm(shank, axis=0)
|
||||
)
|
||||
return 180.0 - np.degrees(np.arccos(np.clip(cos_t, -1, 1)))
|
||||
```
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
### Inverse dynamics (Newton-Euler, sagittal)
|
||||
```python
|
||||
def ankle_moment(grf: np.ndarray, cop: np.ndarray, ankle: np.ndarray,
|
||||
segment_mass: float, segment_com: np.ndarray, segment_acc: np.ndarray,
|
||||
g: float = 9.81) -> np.ndarray:
|
||||
# 매 simplified — full 3D 매 segment inertia tensor 의 require
|
||||
r = cop - ankle
|
||||
M_grf = np.cross(r, grf)
|
||||
inertia_term = segment_mass * (segment_acc + np.array([0, 0, g]))
|
||||
M_inertia = np.cross(segment_com - ankle, inertia_term)
|
||||
return M_grf - M_inertia
|
||||
```
|
||||
|
||||
- **정보 상태:** draft
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
### Markerless (OpenPose / OpenCap-style)
|
||||
```python
|
||||
# 매 multi-view 2D keypoints → 3D triangulation
|
||||
def triangulate(kp_views: list, P_views: list) -> np.ndarray:
|
||||
"""
|
||||
kp_views: [n_views] of (n_joints, 2)
|
||||
P_views: [n_views] of (3, 4) projection matrices
|
||||
"""
|
||||
A = []
|
||||
for kp, P in zip(kp_views, P_views):
|
||||
for j, (u, v) in enumerate(kp):
|
||||
A.append(u * P[2] - P[0])
|
||||
A.append(v * P[2] - P[1])
|
||||
A = np.array(A)
|
||||
_, _, Vt = np.linalg.svd(A)
|
||||
X = Vt[-1]
|
||||
return X[:3] / X[3]
|
||||
```
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
### Gait deviation index (GDI)
|
||||
```python
|
||||
def gait_deviation_index(subject_kinematics: np.ndarray,
|
||||
reference_pcs: np.ndarray,
|
||||
reference_mean: np.ndarray) -> float:
|
||||
# GDI: 매 subject 의 normal-database 의 PCA-distance 의 measure
|
||||
centered = subject_kinematics.flatten() - reference_mean
|
||||
scores = reference_pcs @ centered
|
||||
raw_distance = np.linalg.norm(scores[:15])
|
||||
return 100 * np.exp(-(raw_distance - REFERENCE_MEAN) / REFERENCE_STD)
|
||||
```
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| Clinical CP / stroke | Vicon Plug-in Gait + force plates + EMG |
|
||||
| Field sports screening | IMU + markerless video (OpenCap) |
|
||||
| VR locomotion authoring | Mocap → IK retargeting + ML smoothing |
|
||||
| Exergame user calibration | Single-IMU + heuristic (no full lab needed) |
|
||||
| Research-grade longitudinal | Marker-based + standardized protocol |
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
**기본값**: 매 marker-based optical + force plates 매 gold standard, markerless 매 augmenting.
|
||||
|
||||
- **과거 데이터와의 충돌:** 없음
|
||||
- **정책 변화:** 없음
|
||||
## 🔗 Graph
|
||||
- 부모: [[Biomechanics-of-Injury]] · [[Biomedical-Engineering]] · [[Sports Science]]
|
||||
- 변형: [[Markerless Motion Capture]] · [[IMU-based Gait]] · [[OpenCap]]
|
||||
- 응용: [[가상현실(VR) 자전거 시뮬레이터]] · [[엑서게임(Exergaming)]] · [[Beat Saber]]
|
||||
- Adjacent: [[VR Sickness]] · [[Elite-Athletic-Development]] · [[동작 속도(Movement Speed)]]
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
## 🤖 LLM 활용
|
||||
**언제**: Protocol drafting, joint-angle reporting templates, literature synthesis.
|
||||
**언제 X**: Clinical diagnosis, precise inverse-dynamics validation (deterministic numerics 의 require).
|
||||
|
||||
- **Parent:** [[10_Wiki/Topics]]
|
||||
- **Related:** *(TODO: 최소 2개)*
|
||||
- **Opposite / Trade-off:** *(TODO)*
|
||||
- **Raw Source:** 직접 입력
|
||||
## ❌ 안티패턴
|
||||
- **Marker placement variability**: 매 inter-rater error 매 GDI 의 swamp.
|
||||
- **No force-plate sync**: 매 inverse dynamics 매 unreliable.
|
||||
- **Markerless 만 of clinical**: 매 2026 markerless 매 augment 만 — replace 매 X.
|
||||
- **Single trial 의 conclusion**: 매 stride-to-stride variability 매 high — 매 5+ strides 의 average.
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Vicon docs, Winter "Biomechanics and Motor Control", Gillette protocol papers, OpenCap Stanford 2022-2024).
|
||||
- 신뢰도 A.
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — gait lab stack, kinematics, GDI, markerless integration |
|
||||
|
||||
Reference in New Issue
Block a user