Struct opencv::rgbd::OdometryFrame
source · pub struct OdometryFrame { /* private fields */ }
Expand description
Object that contains a frame data that is possibly needed for the Odometry. It’s used for the efficiency (to pass precomputed/cached data of the frame that participates in the Odometry processing several times).
Implementations§
source§impl OdometryFrame
impl OdometryFrame
pub fn default() -> Result<OdometryFrame>
sourcepub fn new(
image: &Mat,
depth: &Mat,
mask: &Mat,
normals: &Mat,
id: i32
) -> Result<OdometryFrame>
pub fn new( image: &Mat, depth: &Mat, mask: &Mat, normals: &Mat, id: i32 ) -> Result<OdometryFrame>
C++ default parameters
- mask: Mat()
- normals: Mat()
- id: -1
Trait Implementations§
source§impl Boxed for OdometryFrame
impl Boxed for OdometryFrame
source§impl Drop for OdometryFrame
impl Drop for OdometryFrame
source§impl From<OdometryFrame> for RgbdFrame
impl From<OdometryFrame> for RgbdFrame
source§fn from(s: OdometryFrame) -> Self
fn from(s: OdometryFrame) -> Self
Converts to this type from the input type.
source§impl OdometryFrameTrait for OdometryFrame
impl OdometryFrameTrait for OdometryFrame
fn as_raw_mut_OdometryFrame(&mut self) -> *mut c_void
fn set_pyramid_image(&mut self, val: Vector<Mat>)
fn set_pyramid_depth(&mut self, val: Vector<Mat>)
fn set_pyramid_mask(&mut self, val: Vector<Mat>)
fn set_pyramid_cloud(&mut self, val: Vector<Mat>)
fn set_pyramid_d_i_dx(&mut self, val: Vector<Mat>)
fn set_pyramid_d_i_dy(&mut self, val: Vector<Mat>)
fn set_pyramid_textured_mask(&mut self, val: Vector<Mat>)
fn set_pyramid_normals(&mut self, val: Vector<Mat>)
fn set_pyramid_normals_mask(&mut self, val: Vector<Mat>)
fn release(&mut self) -> Result<()>
fn release_pyramids(&mut self) -> Result<()>
source§impl OdometryFrameTraitConst for OdometryFrame
impl OdometryFrameTraitConst for OdometryFrame
fn as_raw_OdometryFrame(&self) -> *const c_void
fn pyramid_image(&self) -> Vector<Mat>
fn pyramid_depth(&self) -> Vector<Mat>
fn pyramid_mask(&self) -> Vector<Mat>
fn pyramid_cloud(&self) -> Vector<Mat>
fn pyramid_d_i_dx(&self) -> Vector<Mat>
fn pyramid_d_i_dy(&self) -> Vector<Mat>
fn pyramid_textured_mask(&self) -> Vector<Mat>
fn pyramid_normals(&self) -> Vector<Mat>
fn pyramid_normals_mask(&self) -> Vector<Mat>
source§impl RgbdFrameTrait for OdometryFrame
impl RgbdFrameTrait for OdometryFrame
source§impl RgbdFrameTraitConst for OdometryFrame
impl RgbdFrameTraitConst for OdometryFrame
source§impl TryFrom<RgbdFrame> for OdometryFrame
impl TryFrom<RgbdFrame> for OdometryFrame
impl Send for OdometryFrame
Auto Trait Implementations§
impl RefUnwindSafe for OdometryFrame
impl !Sync for OdometryFrame
impl Unpin for OdometryFrame
impl UnwindSafe for OdometryFrame
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