feat: add standalone RGBD Python reference project

This commit is contained in:
2026-03-26 13:11:45 +08:00
commit 3025210741
14 changed files with 1865 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
# rapid-pose-rgbd-python-example
Standalone NumPy reference project for the RGBD reconstruction path discussed across `SimpleDepthPose` and `RapidPoseTriangulation`.
It covers:
- padded multi-view 2D pose packing
- aligned depth sampling
- per-joint depth offsets
- camera-space lifting into world coordinates
- stateless multi-view RGBD pose merging
It does not include:
- raw-image 2D detection
- ROS integration
- temporal tracking
- RGB-only triangulation
## Install
```bash
cd /home/crosstyan/Code/rapid-pose-rgbd-python-example
uv sync --dev
```
## Run tests
```bash
uv run basedpyright
uv run pytest
```
## Smoke test
```bash
uv run rapid-pose-rgbd-example
```