pub struct BundleProblem {
pub views: Vec<BundleView>,
pub points: Vec<Vec3<f64>>,
pub observations: Vec<BundleObservation>,
}Expand description
Sparse fixed-camera bundle problem.
Fields§
§views: Vec<BundleView>Fixed calibrated camera views.
points: Vec<Vec3<f64>>Mutable world-space points.
observations: Vec<BundleObservation>Sparse image observations.
Trait Implementations§
Source§impl Clone for BundleProblem
impl Clone for BundleProblem
Source§fn clone(&self) -> BundleProblem
fn clone(&self) -> BundleProblem
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 BundleProblem
impl Debug for BundleProblem
Source§impl PartialEq for BundleProblem
impl PartialEq for BundleProblem
Source§fn eq(&self, other: &BundleProblem) -> bool
fn eq(&self, other: &BundleProblem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BundleProblem
Auto Trait Implementations§
impl Freeze for BundleProblem
impl RefUnwindSafe for BundleProblem
impl Send for BundleProblem
impl Sync for BundleProblem
impl Unpin for BundleProblem
impl UnsafeUnpin for BundleProblem
impl UnwindSafe for BundleProblem
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