1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
//! # ringgrid
//!
//! Pure-Rust detector for dense coded ring calibration targets on a hex lattice.
//!
//! ringgrid detects ring markers in grayscale images, decodes their 16-sector
//! binary IDs from the shipped baseline 893-codeword profile (with an opt-in
//! extended profile available for advanced use), fits subpixel ellipses via
//! Fitzgibbon's direct method with RANSAC, and estimates a board-to-image
//! homography. No OpenCV dependency — all image processing is in Rust.
//!
//! ## Detection Modes
//!
//! - **Simple** — [`Detector::detect`]: single-pass detection in image coordinates.
//! Use when the camera has negligible distortion.
//! - **External mapper** — [`Detector::detect_with_mapper`]: two-pass pipeline
//! with a [`PixelMapper`] (e.g. [`CameraModel`]) for distortion-aware detection.
//! - **Self-undistort** — [`Detector::detect`] with
//! [`SelfUndistortConfig::enable`] set to `true`: estimates a 1-parameter
//! division-model distortion from detected markers and optionally re-runs
//! detection with the estimated correction.
//!
//! ## Quick Start
//!
//! ```no_run
//! use ringgrid::{Detector, TargetLayout};
//! use std::path::Path;
//!
//! let target = TargetLayout::from_json_file(Path::new("target.json")).unwrap();
//! let image = image::open("photo.png").unwrap().to_luma8();
//!
//! let detector = Detector::new(target);
//! let result = detector.detect(&image).unwrap();
//!
//! for marker in &result.detected_markers {
//! if let Some(id) = marker.id {
//! println!("Marker {id} at ({:.1}, {:.1})", marker.center[0], marker.center[1]);
//! }
//! }
//! ```
//!
//! Targets can also be built in code (no files needed):
//!
//! ```
//! use ringgrid::{Detector, TargetLayout};
//!
//! let target = TargetLayout::default_hex();
//! let detector = Detector::new(target);
//!
//! // An empty image yields a valid result with no detections.
//! let image = image::GrayImage::new(64, 48);
//! let result = detector.detect(&image).unwrap();
//! assert!(result.detected_markers.is_empty());
//! ```
//!
//! ## Coordinate Frames
//!
//! Marker centers ([`DetectedMarker::center`]) are always in image-pixel
//! coordinates, regardless of mapper usage. When a [`PixelMapper`] is active,
//! [`DetectedMarker::center_mapped`] provides the working-frame (undistorted)
//! coordinates, and the homography maps board coordinates to the working frame.
//! [`DetectedMarker::board_xy_mm`] provides board-space marker coordinates in
//! millimeters when a valid decoded ID is available on the active board.
//!
//! See [`DetectionResult::center_frame`] and [`DetectionResult::homography_frame`]
//! for the frame metadata on each result.
// The public API is fully documented; this lint keeps it that way.
pub
// ── Public API ──────────────────────────────────────────────────────────
// High-level detector facade and proposal-only convenience helpers
pub use ;
// Proposal module (standalone ellipse center detection)
pub use ;
pub use ;
// Result types — slim, stable primary output of `Detector::detect`.
pub use ;
/// Opt-in diagnostics channel returned by
/// [`Detector::detect_with_diagnostics`]: per-marker fit and decode metrics,
/// homography RANSAC statistics, and pipeline stage timings.
///
/// These types are deliberately not at the crate root: the stable primary
/// output is [`DetectionResult`]; the diagnostics surface may evolve faster
/// between releases.
// Configuration
pub use RansacConfig;
pub use ;
// Sub-configs
pub use ;
pub use ;
/// Inspection helpers for the embedded 16-sector codebook profiles.
///
/// ```
/// use ringgrid::CodebookProfile;
/// use ringgrid::codebook::{codebook_info, decode_word};
///
/// // The shipped baseline profile: 893 sixteen-bit codewords.
/// let info = codebook_info(CodebookProfile::Base);
/// assert_eq!(info.bits, 16);
/// assert_eq!(info.len, 893);
///
/// // Decoding the exact codeword for marker ID 0 is a perfect match.
/// let word = info.first_codeword.unwrap();
/// let m = decode_word(word, CodebookProfile::Base);
/// assert_eq!(m.id, 0);
/// assert_eq!(m.dist, 0);
/// ```
// Geometry — compositional target model. Legacy v4 `board_spec.json` files load
// via `TargetLayout::from_json_*` (schema auto-migration); the deprecated
// `BoardLayout`/`BoardMarker` Rust types were removed in 0.9.
pub use ;
pub use Ellipse;
pub use MarkerSpecConfig;
pub use ;
// Camera / distortion
pub use ;