pub struct CalibrationReport {
pub rms_residual: f64,
pub max_residual: f64,
pub observation_count: usize,
pub iterations: usize,
pub converged: bool,
}Expand description
Common numerical receipt returned by calibration solvers.
Fields§
§rms_residual: f64Root-mean-square residual in pixels or the solver’s documented units.
max_residual: f64Maximum residual magnitude.
observation_count: usizeNumber of observations evaluated.
iterations: usizeIterations executed.
converged: boolWhether the parameter step reached the configured tolerance.
Trait Implementations§
Source§impl Clone for CalibrationReport
impl Clone for CalibrationReport
Source§fn clone(&self) -> CalibrationReport
fn clone(&self) -> CalibrationReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CalibrationReport
impl Debug for CalibrationReport
Source§impl Default for CalibrationReport
impl Default for CalibrationReport
Source§fn default() -> CalibrationReport
fn default() -> CalibrationReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for CalibrationReport
impl PartialEq for CalibrationReport
Source§fn eq(&self, other: &CalibrationReport) -> bool
fn eq(&self, other: &CalibrationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CalibrationReport
impl StructuralPartialEq for CalibrationReport
Auto Trait Implementations§
impl Freeze for CalibrationReport
impl RefUnwindSafe for CalibrationReport
impl Send for CalibrationReport
impl Sync for CalibrationReport
impl Unpin for CalibrationReport
impl UnsafeUnpin for CalibrationReport
impl UnwindSafe for CalibrationReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more