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
sourceimpl 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
sourceimpl Boxed for OdometryFrame
impl Boxed for OdometryFrame
sourceimpl Drop for OdometryFrame
impl Drop for OdometryFrame
sourceimpl From<OdometryFrame> for RgbdFrame
impl From<OdometryFrame> for RgbdFrame
sourcefn from(s: OdometryFrame) -> Self
fn from(s: OdometryFrame) -> Self
Converts to this type from the input type.
sourceimpl 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<()>
sourceimpl 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>
sourceimpl RgbdFrameTrait for OdometryFrame
impl RgbdFrameTrait for OdometryFrame
sourceimpl RgbdFrameTraitConst for OdometryFrame
impl RgbdFrameTraitConst for OdometryFrame
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more