radsym 0.1.2

Radial symmetry detection: center proposals, local support analysis, scoring, and refinement
Documentation
//! Fundamental types, image views, geometry, gradient computation, and NMS.
//!
//! This module provides the stable foundation that all algorithm modules
//! depend on. It must remain small and free of algorithm-specific logic.

pub(crate) mod blur;
pub mod circle_fit;
pub mod coords;
pub mod error;
pub mod geometry;
pub mod gradient;
pub mod homography;
pub mod image_view;
#[cfg(feature = "image-io")]
pub mod io;
pub mod nms;
pub mod polarity;
pub mod pyramid;
pub mod scalar;