[][src]Struct realsense_sys::rs2_intrinsics

#[repr(C)]pub struct rs2_intrinsics {
    pub width: c_int,
    pub height: c_int,
    pub ppx: f32,
    pub ppy: f32,
    pub fx: f32,
    pub fy: f32,
    pub model: rs2_distortion,
    pub coeffs: [f32; 5],
}

\brief Video stream intrinsics.

Fields

width: c_int

< Width of the image in pixels

height: c_int

< Height of the image in pixels

ppx: f32

< Horizontal coordinate of the principal point of the image, as a pixel offset from the left edge

ppy: f32

< Vertical coordinate of the principal point of the image, as a pixel offset from the top edge

fx: f32

< Focal length of the image plane, as a multiple of pixel width

fy: f32

< Focal length of the image plane, as a multiple of pixel height

model: rs2_distortion

< Distortion model of the image

coeffs: [f32; 5]

< Distortion coefficients

Trait Implementations

impl Clone for rs2_intrinsics[src]

impl Copy for rs2_intrinsics[src]

impl Debug for rs2_intrinsics[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.