pub struct CameraFeatures { /* private fields */ }
Implementations§
Source§impl CameraFeatures
impl CameraFeatures
pub fn new( match_map: HashMap<usize, Vector2<usize>>, cam_id: usize, view_matrix: Matrix3x4<f32>, intrinsic_matrix: Matrix3<f32>, ) -> CameraFeatures
pub fn get_feature_map(&self) -> &HashMap<usize, Vector2<usize>>
pub fn get_cam_id(&self) -> usize
pub fn get_view_matrix(&self) -> Matrix3x4<f32>
pub fn get_intrinsic_matrix(&self) -> Matrix3<f32>
pub fn to_serial( fm_vec: &Vec<CameraFeatures>, ) -> Vec<(usize, [f32; 12], [f32; 9], Vec<(usize, (usize, usize))>)>
pub fn from_serial( serial: &Vec<(usize, [f32; 12], [f32; 9], Vec<(usize, (usize, usize))>)>, ) -> Vec<CameraFeatures>
Trait Implementations§
Source§impl Debug for CameraFeatures
impl Debug for CameraFeatures
Source§impl PartialEq for CameraFeatures
impl PartialEq for CameraFeatures
impl StructuralPartialEq for CameraFeatures
Auto Trait Implementations§
impl Freeze for CameraFeatures
impl RefUnwindSafe for CameraFeatures
impl Send for CameraFeatures
impl Sync for CameraFeatures
impl Unpin for CameraFeatures
impl UnwindSafe for CameraFeatures
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.