Struct google_videointelligence1::api::GoogleCloudVideointelligenceV1_PersonDetectionConfig[][src]

pub struct GoogleCloudVideointelligenceV1_PersonDetectionConfig {
    pub include_attributes: Option<bool>,
    pub include_bounding_boxes: Option<bool>,
    pub include_pose_landmarks: Option<bool>,
}

Config for PERSON_DETECTION.

This type is not used in any activity, and only used as part of another schema.

Fields

include_attributes: Option<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.

include_bounding_boxes: Option<bool>

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

include_pose_landmarks: Option<bool>

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

Trait Implementations

impl Clone for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl Debug for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl Default for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl<'de> Deserialize<'de> for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl Part for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl Serialize for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl Send for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl Sync for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl Unpin for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

impl UnwindSafe for GoogleCloudVideointelligenceV1_PersonDetectionConfig[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.