radsym 0.2.0

Radial symmetry detection: center proposals, local support analysis, scoring, and refinement
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Local support extraction and scoring.
//!
//! This module scores how strongly local image evidence supports a geometric
//! hypothesis. The public entry points are [`score::score_circle_support`] and
//! [`score::score_ellipse_support`]: they sample gradient evidence around a
//! [`Circle`](crate::Circle) or [`Ellipse`](crate::Ellipse) and return a
//! [`score::SupportScore`]. Annulus sampling and angular-coverage estimation
//! are internal stages of that computation.

pub mod annulus;
pub(crate) mod coverage;
pub(crate) mod evidence;
pub mod score;