pub struct PyramidCalibrator {
pub n_mode: usize,
/* private fields */
}
Expand description
Pyramid calibration data
Fields§
§n_mode: usize
Implementations§
Source§impl PyramidCalibrator
impl PyramidCalibrator
Sourcepub fn builder(
pym: PyramidBuilder,
modes: impl Into<String>,
n_mode: usize,
) -> PyramidCalibratorBuilder
pub fn builder( pym: PyramidBuilder, modes: impl Into<String>, n_mode: usize, ) -> PyramidCalibratorBuilder
Returns the pyramid builder
Sourcepub fn h0_estimator(&mut self) -> Result<&mut Self, PyramidCalibratorError>
pub fn h0_estimator(&mut self) -> Result<&mut Self, PyramidCalibratorError>
Computes the pyramid LSQ reconstructor excluding piston
pub fn h_estimator(&mut self) -> Result<&mut Self, PyramidCalibratorError>
pub fn p_estimator(&mut self) -> Result<&mut Self, PyramidCalibratorError>
pub fn hp07_estimator(&mut self) -> Result<&mut Self, PyramidCalibratorError>
pub fn hp_estimator(&mut self) -> Result<&mut Self, PyramidCalibratorError>
pub fn set_hp_estimator(&mut self, reconstructor: DMatrix<f32>) -> &mut Self
Trait Implementations§
Source§impl Calibrating for PyramidCalibrator
impl Calibrating for PyramidCalibrator
Source§impl Clone for PyramidCalibrator
impl Clone for PyramidCalibrator
Source§fn clone(&self) -> PyramidCalibrator
fn clone(&self) -> PyramidCalibrator
Returns a copy of the value. Read more
1.0.0 · 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 PyramidCalibrator
impl Debug for PyramidCalibrator
Source§impl<'de> Deserialize<'de> for PyramidCalibrator
impl<'de> Deserialize<'de> for PyramidCalibrator
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PyramidCalibrator
impl Display for PyramidCalibrator
Source§impl From<PyramidCalibrator> for Calibration<PyramidCalibrator>
impl From<PyramidCalibrator> for Calibration<PyramidCalibrator>
Source§fn from(calibrator: PyramidCalibrator) -> Self
fn from(calibrator: PyramidCalibrator) -> Self
Converts to this type from the input type.
Source§impl Serialize for PyramidCalibrator
impl Serialize for PyramidCalibrator
Source§impl TryFrom<&Path> for PyramidCalibrator
impl TryFrom<&Path> for PyramidCalibrator
Auto Trait Implementations§
impl Freeze for PyramidCalibrator
impl RefUnwindSafe for PyramidCalibrator
impl Send for PyramidCalibrator
impl Sync for PyramidCalibrator
impl Unpin for PyramidCalibrator
impl UnwindSafe for PyramidCalibrator
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.