#[repr(u32)]pub enum CalibrationModelType {
Unknown = 0,
Theta = 1,
Polynomial3K = 2,
Rational6KT = 3,
BrownConrady = 4,
}Expand description
Calibration model type.
Variants§
Unknown = 0
< Calibration model is unknown
Theta = 1
< Deprecated (not supported). Calibration model is Theta (arctan).
Polynomial3K = 2
< Deprecated (not supported). Calibration model is Polynomial 3K.
Rational6KT = 3
< Deprecated (only supported early internal devices). Calibration model is Rational 6KT.
BrownConrady = 4
< Calibration model is Brown Conrady (compatible with OpenCV)
Trait Implementations§
Source§impl Clone for CalibrationModelType
impl Clone for CalibrationModelType
Source§fn clone(&self) -> CalibrationModelType
fn clone(&self) -> CalibrationModelType
Returns a duplicate 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 CalibrationModelType
impl Debug for CalibrationModelType
Source§impl From<CalibrationModelType> for k4a_calibration_model_type_t
impl From<CalibrationModelType> for k4a_calibration_model_type_t
Source§fn from(s: CalibrationModelType) -> Self
fn from(s: CalibrationModelType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CalibrationModelType
impl PartialEq for CalibrationModelType
impl Copy for CalibrationModelType
impl StructuralPartialEq for CalibrationModelType
Auto Trait Implementations§
impl Freeze for CalibrationModelType
impl RefUnwindSafe for CalibrationModelType
impl Send for CalibrationModelType
impl Sync for CalibrationModelType
impl Unpin for CalibrationModelType
impl UnwindSafe for CalibrationModelType
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