confidence = $confidence; } /** * @return float */ public function getConfidence() { return $this->confidence; } /** * The name of this landmark, for example, left_hand, right_shoulder. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The 2D point of the detected landmark using the normalized image coordinate * system. The normalized coordinates have the range from 0 to 1. * * @param GoogleCloudVideointelligenceV1p2beta1NormalizedVertex $point */ public function setPoint(GoogleCloudVideointelligenceV1p2beta1NormalizedVertex $point) { $this->point = $point; } /** * @return GoogleCloudVideointelligenceV1p2beta1NormalizedVertex */ public function getPoint() { return $this->point; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudVideointelligenceV1p2beta1DetectedLandmark::class, 'Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1DetectedLandmark');