graph-based-image-segmentation 0.2.1

An implementation of graph-based image segmentation algorithms based on superpixels.
Documentation
1
2
3
4
5
6
7
8
9
//! Pixel graph, edges and nodes.

mod image_edge;
mod image_graph;
mod image_node;

pub use image_edge::ImageEdge;
pub use image_graph::ImageGraph;
pub use image_node::{ImageNode, ImageNodeColor};