includeAttributes = $includeAttributes; } /** * @return bool */ public function getIncludeAttributes() { return $this->includeAttributes; } /** * Whether bounding boxes are included in the person detection annotation * output. * * @param bool $includeBoundingBoxes */ public function setIncludeBoundingBoxes($includeBoundingBoxes) { $this->includeBoundingBoxes = $includeBoundingBoxes; } /** * @return bool */ public function getIncludeBoundingBoxes() { return $this->includeBoundingBoxes; } /** * Whether to enable pose landmarks detection. Ignored if * 'include_bounding_boxes' is set to false. * * @param bool $includePoseLandmarks */ public function setIncludePoseLandmarks($includePoseLandmarks) { $this->includePoseLandmarks = $includePoseLandmarks; } /** * @return bool */ public function getIncludePoseLandmarks() { return $this->includePoseLandmarks; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudVideointelligenceV1PersonDetectionConfig::class, 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1PersonDetectionConfig');