pub struct BundleView {
pub camera: PinholeCamera,
pub camera_from_world: RigidTransform3,
}Expand description
Calibrated camera and world-to-camera pose used by bundle adjustment.
Fields§
§camera: PinholeCameraCamera intrinsics/distortion.
camera_from_world: RigidTransform3World-to-camera transform.
Trait Implementations§
Source§impl Clone for BundleView
impl Clone for BundleView
Source§fn clone(&self) -> BundleView
fn clone(&self) -> BundleView
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 BundleView
impl Debug for BundleView
Source§impl PartialEq for BundleView
impl PartialEq for BundleView
Source§fn eq(&self, other: &BundleView) -> bool
fn eq(&self, other: &BundleView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BundleView
impl StructuralPartialEq for BundleView
Auto Trait Implementations§
impl Freeze for BundleView
impl RefUnwindSafe for BundleView
impl Send for BundleView
impl Sync for BundleView
impl Unpin for BundleView
impl UnsafeUnpin for BundleView
impl UnwindSafe for BundleView
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