ringgrid 0.5.3

Pure-Rust detector for coded ring calibration targets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(crate) use image::GrayImage;

pub(crate) use crate::detector::inner_fit;
pub(crate) use crate::detector::marker_build;
pub(crate) use crate::detector::outer_fit;
pub(crate) use crate::detector::{CompletionStats, DetectConfig};

pub(crate) use crate::homography::{
    compute_h_stats, matrix3_to_array, mean_reproj_error_px, refit_homography,
};

pub(crate) use crate::detector::{
    annotate_neighbor_radius_ratios, apply_projective_centers, complete_with_h, dedup_by_id,
    dedup_markers, global_filter, try_recover_inner_as_outer, verify_and_correct_ids,
    warn_center_correction_without_intrinsics,
};