oxihuman-morph 0.1.2

Parametric morphology engine for human body generation — targets, blendshapes, FACS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2026 COOLJAPAN OU (Team KitaSan)
// SPDX-License-Identifier: Apache-2.0

//! Fit body parameters to a 3-D point cloud from a body scanner.
//!
//! This module re-exports all public items from the two sub-modules:
//! - `body_scan_fit_core` — scan fitting types and core fitting logic.
//! - `body_scan_fit_icp` — ICP aligner, SVD math, and multi-stage pipeline.

pub(crate) mod body_scan_fit_core;
pub(crate) mod body_scan_fit_icp;

pub use body_scan_fit_core::*;
pub use body_scan_fit_icp::*;