pub struct PinholeObservation {
pub camera_point: Vec3<f64>,
pub pixel: Vec2<f64>,
}Expand description
Known camera-space point and observed image pixel for mono calibration.
Fields§
§camera_point: Vec3<f64>Point expressed in the camera frame.
pixel: Vec2<f64>Measured image pixel.
Trait Implementations§
Source§impl Clone for PinholeObservation
impl Clone for PinholeObservation
Source§fn clone(&self) -> PinholeObservation
fn clone(&self) -> PinholeObservation
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 PinholeObservation
impl Debug for PinholeObservation
Source§impl PartialEq for PinholeObservation
impl PartialEq for PinholeObservation
Source§fn eq(&self, other: &PinholeObservation) -> bool
fn eq(&self, other: &PinholeObservation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PinholeObservation
impl StructuralPartialEq for PinholeObservation
Auto Trait Implementations§
impl Freeze for PinholeObservation
impl RefUnwindSafe for PinholeObservation
impl Send for PinholeObservation
impl Sync for PinholeObservation
impl Unpin for PinholeObservation
impl UnsafeUnpin for PinholeObservation
impl UnwindSafe for PinholeObservation
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