[][src]Struct leap_sys::_LEAP_TRACKING_EVENT

#[repr(C, packed)]pub struct _LEAP_TRACKING_EVENT {
    pub info: LEAP_FRAME_HEADER,
    pub tracking_frame_id: i64,
    pub nHands: u32,
    pub pHands: *mut LEAP_HAND,
    pub framerate: f32,
}

\ingroup Structs A snapshot, or frame of data, containing the tracking data for a single moment in time. The LEAP_FRAME struct is the container for all the tracking data. @since 3.0.0

Fields

info: LEAP_FRAME_HEADER

A universal frame identification header. @since 3.0.0

tracking_frame_id: i64

An identifier for this tracking frame. This identifier is meant to be monotonically increasing, but values may be skipped if the client application does not poll for messages fast enough. This number also generally increases at the same rate as info.frame_id, but if the server cannot process every image received from the device cameras, the info.frame_id identifier may increase faster. @since 3.0.0

nHands: u32

The number of hands tracked in this frame, i.e. the number of elements in the pHands array. @since 3.0.0

pHands: *mut LEAP_HAND

A pointer to the array of hands tracked in this frame. @since 3.0.0

framerate: f32

Current tracking frame rate in hertz.

This frame rate is distinct from the image frame rate, which is the rate that images are being read from the device. Depending on host CPU limitations, the tracking frame rate may be substantially less than the device frame rate.

This number is generally equal to or less than the device frame rate, but there is one case where this number may be higher than the device frame rate: When the device rate drops. In this case, the device frame rate will fall sooner than the tracking frame rate.

This number is equal to zero if there are not enough frames to estimate frame rate.

This number cannot be negative. @since 3.0.0

Trait Implementations

impl Clone for _LEAP_TRACKING_EVENT[src]

impl Copy for _LEAP_TRACKING_EVENT[src]

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