pub struct StereoRectifyMaps { /* private fields */ }Expand description
Remap grids produced by stereo rectification for explicit warp::remap.
Implementations§
Source§impl StereoRectifyMaps
impl StereoRectifyMaps
Sourcepub const fn left_map_x(&self) -> &Image<f32, 1>
pub const fn left_map_x(&self) -> &Image<f32, 1>
Returns the left absolute-x remap image.
Sourcepub const fn left_map_y(&self) -> &Image<f32, 1>
pub const fn left_map_y(&self) -> &Image<f32, 1>
Returns the left absolute-y remap image.
Sourcepub const fn right_map_x(&self) -> &Image<f32, 1>
pub const fn right_map_x(&self) -> &Image<f32, 1>
Returns the right absolute-x remap image.
Sourcepub const fn right_map_y(&self) -> &Image<f32, 1>
pub const fn right_map_y(&self) -> &Image<f32, 1>
Returns the right absolute-y remap image.
Sourcepub const fn rectified_left(&self) -> CameraMatrix3
pub const fn rectified_left(&self) -> CameraMatrix3
Returns the shared rectified left intrinsics.
Sourcepub const fn rectified_right(&self) -> CameraMatrix3
pub const fn rectified_right(&self) -> CameraMatrix3
Returns the shared rectified right intrinsics.
Trait Implementations§
Source§impl Clone for StereoRectifyMaps
impl Clone for StereoRectifyMaps
Source§fn clone(&self) -> StereoRectifyMaps
fn clone(&self) -> StereoRectifyMaps
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 StereoRectifyMaps
impl Debug for StereoRectifyMaps
Source§impl PartialEq for StereoRectifyMaps
impl PartialEq for StereoRectifyMaps
Source§fn eq(&self, other: &StereoRectifyMaps) -> bool
fn eq(&self, other: &StereoRectifyMaps) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StereoRectifyMaps
Auto Trait Implementations§
impl Freeze for StereoRectifyMaps
impl RefUnwindSafe for StereoRectifyMaps
impl Send for StereoRectifyMaps
impl Sync for StereoRectifyMaps
impl Unpin for StereoRectifyMaps
impl UnsafeUnpin for StereoRectifyMaps
impl UnwindSafe for StereoRectifyMaps
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more