Skip to main content

cog_pose_estimation/
lib.rs

1//! `cog-pose-estimation` library surface.
2//!
3//! See `ADR-101` for the design and `ADR-100` for the surrounding Cog
4//! packaging spec. This crate is intentionally a thin shell around
5//! `wifi-densepose-train`'s exported model types — the heavy lifting
6//! (encoder, pose head) lives there.
7
8pub mod config;
9pub mod inference;
10pub mod manifest;
11pub mod publisher;
12pub mod runtime;
13
14/// Cog identifier — matches the on-disk path
15/// `/var/lib/cognitum/apps/pose-estimation/`.
16pub const COG_ID: &str = "pose-estimation";
17
18/// Cog version (sourced from Cargo.toml at build time).
19pub const COG_VERSION: &str = env!("CARGO_PKG_VERSION");