Struct rubullet::Images[][src]

pub struct Images {
    pub rgba: RgbaImage,
    pub depth: ImageBuffer<Luma<f32>, Vec<f32>>,
    pub segmentation: ImageBuffer<Luma<i32>, Vec<i32>>,
}

Stores the images from get_camera_image()

Fields

rgba: RgbaImage

RGB image with additional alpha channel

depth: ImageBuffer<Luma<f32>, Vec<f32>>

Depth image. Every pixel represents a distance in meters

segmentation: ImageBuffer<Luma<i32>, Vec<i32>>

Segmentation image. Every pixel represents a unique BodyId

Auto Trait Implementations

impl RefUnwindSafe for Images

impl Send for Images

impl Sync for Images

impl Unpin for Images

impl UnwindSafe for Images

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,