Struct gapi_grpc::google::cloud::videointelligence::v1p3beta1::PersonDetectionConfig[][src]

pub struct PersonDetectionConfig {
    pub include_bounding_boxes: bool,
    pub include_pose_landmarks: bool,
    pub include_attributes: bool,
}

Config for PERSON_DETECTION.

Fields

include_bounding_boxes: bool

Whether bounding boxes are included in the person detection annotation output.

include_pose_landmarks: bool

Whether to enable pose landmarks detection. Ignored if ‘include_bounding_boxes’ is set to false.

include_attributes: bool

Whether to enable person attributes detection, such as cloth color (black, blue, etc), type (coat, dress, etc), pattern (plain, floral, etc), hair, etc. Ignored if ‘include_bounding_boxes’ is set to false.

Trait Implementations

impl Clone for PersonDetectionConfig[src]

impl Debug for PersonDetectionConfig[src]

impl Default for PersonDetectionConfig[src]

impl Message for PersonDetectionConfig[src]

impl PartialEq<PersonDetectionConfig> for PersonDetectionConfig[src]

impl StructuralPartialEq for PersonDetectionConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for PersonDetectionConfig

impl Send for PersonDetectionConfig

impl Sync for PersonDetectionConfig

impl Unpin for PersonDetectionConfig

impl UnwindSafe for PersonDetectionConfig

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]