pub struct StereoCalibration {
pub left: PinholeCamera,
pub right: PinholeCamera,
pub right_from_left: RigidTransform3,
pub report: CalibrationReport,
}Expand description
Stereo calibration result with explicit right-from-left transform.
Fields§
§left: PinholeCameraLeft calibrated camera.
right: PinholeCameraRight calibrated camera.
right_from_left: RigidTransform3Transform mapping left-camera points into the right camera.
report: CalibrationReport3D alignment residual receipt.
Trait Implementations§
Source§impl Clone for StereoCalibration
impl Clone for StereoCalibration
Source§fn clone(&self) -> StereoCalibration
fn clone(&self) -> StereoCalibration
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 StereoCalibration
impl Debug for StereoCalibration
Source§impl PartialEq for StereoCalibration
impl PartialEq for StereoCalibration
Source§fn eq(&self, other: &StereoCalibration) -> bool
fn eq(&self, other: &StereoCalibration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StereoCalibration
impl StructuralPartialEq for StereoCalibration
Auto Trait Implementations§
impl Freeze for StereoCalibration
impl RefUnwindSafe for StereoCalibration
impl Send for StereoCalibration
impl Sync for StereoCalibration
impl Unpin for StereoCalibration
impl UnsafeUnpin for StereoCalibration
impl UnwindSafe for StereoCalibration
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