mimesis 0.2.0

Generate 3D meshes from images using contour tracing and polygon extrusion.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod binary_image;
mod contour;
mod pixel;
pub mod mesh;
pub mod draw;
#[cfg(feature = "background-remover")]
mod background_remover;

pub use crate::binary_image::BinaryImage;
#[cfg(feature = "background-remover")]
pub use crate::background_remover::BackgroundRemover;