[][src]Struct realsense_sys::rs2_pose

#[repr(C)]pub struct rs2_pose {
    pub translation: rs2_vector,
    pub velocity: rs2_vector,
    pub acceleration: rs2_vector,
    pub rotation: rs2_quaternion,
    pub angular_velocity: rs2_vector,
    pub angular_acceleration: rs2_vector,
    pub tracker_confidence: c_uint,
    pub mapper_confidence: c_uint,
}

Fields

translation: rs2_vector

< X, Y, Z values of translation, in meters (relative to initial position)

velocity: rs2_vector

< X, Y, Z values of velocity, in meters/sec

acceleration: rs2_vector

< X, Y, Z values of acceleration, in meters/sec^2

rotation: rs2_quaternion

< Qi, Qj, Qk, Qr components of rotation as represented in quaternion rotation (relative to initial position)

angular_velocity: rs2_vector

< X, Y, Z values of angular velocity, in radians/sec

angular_acceleration: rs2_vector

< X, Y, Z values of angular acceleration, in radians/sec^2

tracker_confidence: c_uint

< Pose confidence 0x0 - Failed, 0x1 - Low, 0x2 - Medium, 0x3 - High

mapper_confidence: c_uint

< Pose map confidence 0x0 - Failed, 0x1 - Low, 0x2 - Medium, 0x3 - High

Trait Implementations

impl Clone for rs2_pose[src]

impl Copy for rs2_pose[src]

impl Debug for rs2_pose[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.