Interface PersonDetectionConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PersonDetectionConfig
,PersonDetectionConfig.Builder
public interface PersonDetectionConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getIncludeAttributes()
Whether to enable person attributes detection, such as cloth color (black, blue, etc), type (coat, dress, etc), pattern (plain, floral, etc), hair, etc.boolean
getIncludeBoundingBoxes()
Whether bounding boxes are included in the person detection annotation output.boolean
getIncludePoseLandmarks()
Whether to enable pose landmarks detection.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIncludeBoundingBoxes
boolean getIncludeBoundingBoxes()
Whether bounding boxes are included in the person detection annotation output.
bool include_bounding_boxes = 1;
- Returns:
- The includeBoundingBoxes.
-
getIncludePoseLandmarks
boolean getIncludePoseLandmarks()
Whether to enable pose landmarks detection. Ignored if 'include_bounding_boxes' is set to false.
bool include_pose_landmarks = 2;
- Returns:
- The includePoseLandmarks.
-
getIncludeAttributes
boolean getIncludeAttributes()
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.
bool include_attributes = 3;
- Returns:
- The includeAttributes.
-
-