boundingBox = $boundingBox; } /** * @return CloudAiLargeModelsVisionRaiInfoDetectedLabelsBoundingBox */ public function getBoundingBox() { return $this->boundingBox; } /** * Description of the label * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * The intersection ratio between the detection bounding box and the mask. * * @param float $iouScore */ public function setIouScore($iouScore) { $this->iouScore = $iouScore; } /** * @return float */ public function getIouScore() { return $this->iouScore; } /** * MID of the label * * @param string $mid */ public function setMid($mid) { $this->mid = $mid; } /** * @return string */ public function getMid() { return $this->mid; } /** * Confidence score of the label * * @param float $score */ public function setScore($score) { $this->score = $score; } /** * @return float */ public function getScore() { return $this->score; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CloudAiLargeModelsVisionRaiInfoDetectedLabelsEntity::class, 'Google_Service_Aiplatform_CloudAiLargeModelsVisionRaiInfoDetectedLabelsEntity');