source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1SchemaModelevaluationMetricsVideoObjectTrackingMetrics.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 4.6 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Aiplatform;
19
20class GoogleCloudAiplatformV1SchemaModelevaluationMetricsVideoObjectTrackingMetrics extends \Google\Collection
21{
22 protected $collection_key = 'trackMetrics';
23 /**
24 * @var float
25 */
26 public $boundingBoxMeanAveragePrecision;
27 protected $boundingBoxMetricsType = GoogleCloudAiplatformV1SchemaModelevaluationMetricsBoundingBoxMetrics::class;
28 protected $boundingBoxMetricsDataType = 'array';
29 /**
30 * @var int
31 */
32 public $evaluatedBoundingBoxCount;
33 /**
34 * @var int
35 */
36 public $evaluatedFrameCount;
37 /**
38 * @var int
39 */
40 public $evaluatedTrackCount;
41 /**
42 * @var float
43 */
44 public $trackMeanAveragePrecision;
45 /**
46 * @var float
47 */
48 public $trackMeanBoundingBoxIou;
49 /**
50 * @var float
51 */
52 public $trackMeanMismatchRate;
53 protected $trackMetricsType = GoogleCloudAiplatformV1SchemaModelevaluationMetricsTrackMetrics::class;
54 protected $trackMetricsDataType = 'array';
55
56 /**
57 * @param float
58 */
59 public function setBoundingBoxMeanAveragePrecision($boundingBoxMeanAveragePrecision)
60 {
61 $this->boundingBoxMeanAveragePrecision = $boundingBoxMeanAveragePrecision;
62 }
63 /**
64 * @return float
65 */
66 public function getBoundingBoxMeanAveragePrecision()
67 {
68 return $this->boundingBoxMeanAveragePrecision;
69 }
70 /**
71 * @param GoogleCloudAiplatformV1SchemaModelevaluationMetricsBoundingBoxMetrics[]
72 */
73 public function setBoundingBoxMetrics($boundingBoxMetrics)
74 {
75 $this->boundingBoxMetrics = $boundingBoxMetrics;
76 }
77 /**
78 * @return GoogleCloudAiplatformV1SchemaModelevaluationMetricsBoundingBoxMetrics[]
79 */
80 public function getBoundingBoxMetrics()
81 {
82 return $this->boundingBoxMetrics;
83 }
84 /**
85 * @param int
86 */
87 public function setEvaluatedBoundingBoxCount($evaluatedBoundingBoxCount)
88 {
89 $this->evaluatedBoundingBoxCount = $evaluatedBoundingBoxCount;
90 }
91 /**
92 * @return int
93 */
94 public function getEvaluatedBoundingBoxCount()
95 {
96 return $this->evaluatedBoundingBoxCount;
97 }
98 /**
99 * @param int
100 */
101 public function setEvaluatedFrameCount($evaluatedFrameCount)
102 {
103 $this->evaluatedFrameCount = $evaluatedFrameCount;
104 }
105 /**
106 * @return int
107 */
108 public function getEvaluatedFrameCount()
109 {
110 return $this->evaluatedFrameCount;
111 }
112 /**
113 * @param int
114 */
115 public function setEvaluatedTrackCount($evaluatedTrackCount)
116 {
117 $this->evaluatedTrackCount = $evaluatedTrackCount;
118 }
119 /**
120 * @return int
121 */
122 public function getEvaluatedTrackCount()
123 {
124 return $this->evaluatedTrackCount;
125 }
126 /**
127 * @param float
128 */
129 public function setTrackMeanAveragePrecision($trackMeanAveragePrecision)
130 {
131 $this->trackMeanAveragePrecision = $trackMeanAveragePrecision;
132 }
133 /**
134 * @return float
135 */
136 public function getTrackMeanAveragePrecision()
137 {
138 return $this->trackMeanAveragePrecision;
139 }
140 /**
141 * @param float
142 */
143 public function setTrackMeanBoundingBoxIou($trackMeanBoundingBoxIou)
144 {
145 $this->trackMeanBoundingBoxIou = $trackMeanBoundingBoxIou;
146 }
147 /**
148 * @return float
149 */
150 public function getTrackMeanBoundingBoxIou()
151 {
152 return $this->trackMeanBoundingBoxIou;
153 }
154 /**
155 * @param float
156 */
157 public function setTrackMeanMismatchRate($trackMeanMismatchRate)
158 {
159 $this->trackMeanMismatchRate = $trackMeanMismatchRate;
160 }
161 /**
162 * @return float
163 */
164 public function getTrackMeanMismatchRate()
165 {
166 return $this->trackMeanMismatchRate;
167 }
168 /**
169 * @param GoogleCloudAiplatformV1SchemaModelevaluationMetricsTrackMetrics[]
170 */
171 public function setTrackMetrics($trackMetrics)
172 {
173 $this->trackMetrics = $trackMetrics;
174 }
175 /**
176 * @return GoogleCloudAiplatformV1SchemaModelevaluationMetricsTrackMetrics[]
177 */
178 public function getTrackMetrics()
179 {
180 return $this->trackMetrics;
181 }
182}
183
184// Adding a class alias for backwards compatibility with the previous class name.
185class_alias(GoogleCloudAiplatformV1SchemaModelevaluationMetricsVideoObjectTrackingMetrics::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1SchemaModelevaluationMetricsVideoObjectTrackingMetrics');
Note: See TracBrowser for help on using the repository browser.