scirs2-ndimage 0.4.2

N-dimensional image processing module for SciRS2 (scirs2-ndimage)
Documentation
//! Image segmentation module
//!
//! This module provides functions for segmenting images into regions
//! or partitioning images into meaningful parts.

mod active_contours;
mod chan_vese;
pub mod contours;
mod graph_cuts;
mod thresholding;
mod watershed;

// Re-export submodule components
pub use self::thresholding::{
    adaptive_threshold, otsu_threshold, threshold_binary, AdaptiveMethod,
};
pub use self::watershed::{
    marker_watershed, watershed, watershed_from_distance, watershed_with_config, WatershedConfig,
    WatershedConnectivity,
};

// Advanced segmentation algorithms
pub use self::active_contours::{
    active_contour, create_circle_contour, create_ellipse_contour, mask_to_contour, smooth_contour,
    ActiveContourParams,
};
pub use self::chan_vese::{
    chan_vese, chan_vese_multiphase, checkerboard_level_set, mask_to_level_set, ChanVeseParams,
};
pub use self::graph_cuts::{graph_cuts, GraphCutsParams, InteractiveGraphCuts};

// Contour finding (OpenCV-like findContours)
pub use self::contours::{
    draw_contours, find_contours, point_in_contour, ApproximationMethod, Contour, ContourHierarchy,
    ContourMoments, RetrievalMode,
};