ed721729fd
Add end-to-end RGB-D reconstruction support across the C++ core and Python API. - add a native merge_rgbd_views path, view-aware 3D pose containers, and nanobind bindings - expose Python helpers to sample aligned depth, apply per-joint offsets, lift UVD poses to world space, and run reconstruct_rgbd - add RGB-D regression tests for merging, manual pipeline parity, symmetric depth sampling windows, and out-of-bounds joints - bump the project version from 0.1.0 to 0.2.0 for the new feature surface
18 lines
400 B
CMake
18 lines
400 B
CMake
cmake_minimum_required(VERSION 3.18)
|
|
|
|
project(RapidPoseTriangulation
|
|
VERSION 0.2.0
|
|
LANGUAGES CXX
|
|
DESCRIPTION "Rapid Pose Triangulation library with Python bindings"
|
|
)
|
|
|
|
# Global settings
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
# Add subdirectories
|
|
add_subdirectory(rpt)
|
|
add_subdirectory(bindings)
|