1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! Algorithm to cluster a color image and build a tree of clusters
//! 
//! The hierarchical structure resembles the human visual cortex.
//! 
//! To support interactivity, components follow a state-machine model:
//! 
//! + new(): creation of placeholder object
//! + init(): resource allocation
//! + tick() -> bool: computation. returning false to continue, returning true when finish
//! + result() -> T: cleanup & collect results

mod builder;
mod cluster;
mod container;
mod runner;

pub use builder::*;
pub use cluster::*;
pub use container::*;
pub use runner::*;