cu_vslam_rs 0.1.1

Rust FFI for NVIDIA cuVSLAM visual odometry: raw bindings plus a safe Tracker wrapper. Requires a cuVSLAM SDK at build time (CUVSLAM_SDK_DIR); the repository's nix flake provides one per platform, including macOS via CuMetal.
1
2
3
4
5
6
7
8
9
10
// Copyright 2026 Dimensional Inc.
// SPDX-License-Identifier: Apache-2.0

//! Rust FFI for [cuVSLAM](https://github.com/nvidia-isaac/cuVSLAM). Linking needs
//! `CUVSLAM_SDK_DIR`; see the README.

pub mod ffi;
mod tracker;

pub use tracker::{CameraParams, ImageRef, PoseEstimate, Tracker};