6d3c5cc5c1
- Retrieve depth + confidence measures from SVOReader when depth enabled - Compute depth residual metrics and attach to output JSON - Optionally write per-corner residual CSV via --report-csv - Post-process refinement: optimize final pose and report pre/post metrics - Add unit tests for depth verification and refinement modules - Add basedpyright dev dependency for diagnostics
34 lines
635 B
TOML
34 lines
635 B
TOML
[project]
|
|
name = "depth-sensing"
|
|
version = "0.1.0"
|
|
description = "depth sensing with ZED cameras"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pyzed",
|
|
"cupy-cuda12x",
|
|
"cuda-python",
|
|
"numpy",
|
|
"pyopengl>=3.1.10",
|
|
"pyopengl-accelerate>=3.1.10",
|
|
"jupyterlab>=4.5.3",
|
|
"opencv-python>=4.13.0.90",
|
|
"click>=8.3.1",
|
|
"loguru>=0.7.3",
|
|
"awkward>=2.8.12",
|
|
"jaxtyping>=0.3.7",
|
|
"pyarrow>=23.0.0",
|
|
"pandas>=3.0.0",
|
|
"scipy>=1.17.0",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
pyzed = { path = "libs/pyzed_pkg" }
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"basedpyright>=1.37.4",
|
|
"pytest>=9.0.2",
|
|
]
|
|
|