annotation_payload.proto 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.aiplatform.v1beta1.schema;
  16. import "google/cloud/aiplatform/v1beta1/schema/annotation_spec_color.proto";
  17. import "google/cloud/aiplatform/v1beta1/schema/geometry.proto";
  18. import "google/protobuf/duration.proto";
  19. option csharp_namespace = "Google.Cloud.AIPlatform.V1Beta1.Schema";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1beta1/schema;schema";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "AnnotationPayloadProto";
  23. option java_package = "com.google.cloud.aiplatform.v1beta1.schema";
  24. option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1\\Schema";
  25. option ruby_package = "Google::Cloud::AIPlatform::V1beta1::Schema";
  26. // Annotation details specific to image classification.
  27. message ImageClassificationAnnotation {
  28. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  29. string annotation_spec_id = 1;
  30. // The display name of the AnnotationSpec that this Annotation pertains to.
  31. string display_name = 2;
  32. }
  33. // Annotation details specific to image object detection.
  34. message ImageBoundingBoxAnnotation {
  35. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  36. string annotation_spec_id = 1;
  37. // The display name of the AnnotationSpec that this Annotation pertains to.
  38. string display_name = 2;
  39. // The leftmost coordinate of the bounding box.
  40. double x_min = 3;
  41. // The rightmost coordinate of the bounding box.
  42. double x_max = 4;
  43. // The topmost coordinate of the bounding box.
  44. double y_min = 5;
  45. // The bottommost coordinate of the bounding box.
  46. double y_max = 6;
  47. }
  48. // Annotation details specific to image segmentation.
  49. message ImageSegmentationAnnotation {
  50. // The mask based segmentation annotation.
  51. message MaskAnnotation {
  52. // Google Cloud Storage URI that points to the mask image. The image must be
  53. // in PNG format. It must have the same size as the DataItem's image. Each
  54. // pixel in the image mask represents the AnnotationSpec which the pixel in
  55. // the image DataItem belong to. Each color is mapped to one AnnotationSpec
  56. // based on annotation_spec_colors.
  57. string mask_gcs_uri = 1;
  58. // The mapping between color and AnnotationSpec for this Annotation.
  59. repeated AnnotationSpecColor annotation_spec_colors = 2;
  60. }
  61. // Represents a polygon in image.
  62. message PolygonAnnotation {
  63. // The vertexes are connected one by one and the last vertex is connected to
  64. // the first one to represent a polygon.
  65. repeated Vertex vertexes = 1;
  66. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  67. string annotation_spec_id = 2;
  68. // The display name of the AnnotationSpec that this Annotation pertains to.
  69. string display_name = 3;
  70. }
  71. // Represents a polyline in image.
  72. message PolylineAnnotation {
  73. // The vertexes are connected one by one and the last vertex in not
  74. // connected to the first one.
  75. repeated Vertex vertexes = 1;
  76. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  77. string annotation_spec_id = 2;
  78. // The display name of the AnnotationSpec that this Annotation pertains to.
  79. string display_name = 3;
  80. }
  81. oneof annotation {
  82. // Mask based segmentation annotation. Only one mask annotation can exist
  83. // for one image.
  84. MaskAnnotation mask_annotation = 3;
  85. // Polygon annotation.
  86. PolygonAnnotation polygon_annotation = 4;
  87. // Polyline annotation.
  88. PolylineAnnotation polyline_annotation = 5;
  89. }
  90. }
  91. // Annotation details specific to text classification.
  92. message TextClassificationAnnotation {
  93. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  94. string annotation_spec_id = 1;
  95. // The display name of the AnnotationSpec that this Annotation pertains to.
  96. string display_name = 2;
  97. }
  98. // Annotation details specific to text extraction.
  99. message TextExtractionAnnotation {
  100. // The segment of the text content.
  101. TextSegment text_segment = 1;
  102. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  103. string annotation_spec_id = 2;
  104. // The display name of the AnnotationSpec that this Annotation pertains to.
  105. string display_name = 3;
  106. }
  107. // The text segment inside of DataItem.
  108. message TextSegment {
  109. // Zero-based character index of the first character of the text
  110. // segment (counting characters from the beginning of the text).
  111. uint64 start_offset = 1;
  112. // Zero-based character index of the first character past the end of
  113. // the text segment (counting character from the beginning of the text).
  114. // The character at the end_offset is NOT included in the text segment.
  115. uint64 end_offset = 2;
  116. // The text content in the segment for output only.
  117. string content = 3;
  118. }
  119. // Annotation details specific to text sentiment.
  120. message TextSentimentAnnotation {
  121. // The sentiment score for text.
  122. int32 sentiment = 1;
  123. // The sentiment max score for text.
  124. int32 sentiment_max = 2;
  125. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  126. string annotation_spec_id = 3;
  127. // The display name of the AnnotationSpec that this Annotation pertains to.
  128. string display_name = 4;
  129. }
  130. // Annotation details specific to video classification.
  131. message VideoClassificationAnnotation {
  132. // This Annotation applies to the time period represented by the TimeSegment.
  133. // If it's not set, the Annotation applies to the whole video.
  134. TimeSegment time_segment = 1;
  135. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  136. string annotation_spec_id = 2;
  137. // The display name of the AnnotationSpec that this Annotation pertains to.
  138. string display_name = 3;
  139. }
  140. // A time period inside of a DataItem that has a time dimension (e.g. video).
  141. message TimeSegment {
  142. // Start of the time segment (inclusive), represented as the duration since
  143. // the start of the DataItem.
  144. google.protobuf.Duration start_time_offset = 1;
  145. // End of the time segment (exclusive), represented as the duration since the
  146. // start of the DataItem.
  147. google.protobuf.Duration end_time_offset = 2;
  148. }
  149. // Annotation details specific to video object tracking.
  150. message VideoObjectTrackingAnnotation {
  151. // A time (frame) of a video to which this annotation pertains.
  152. // Represented as the duration since the video's start.
  153. google.protobuf.Duration time_offset = 1;
  154. // The leftmost coordinate of the bounding box.
  155. double x_min = 2;
  156. // The rightmost coordinate of the bounding box.
  157. double x_max = 3;
  158. // The topmost coordinate of the bounding box.
  159. double y_min = 4;
  160. // The bottommost coordinate of the bounding box.
  161. double y_max = 5;
  162. // The instance of the object, expressed as a positive integer. Used to track
  163. // the same object across different frames.
  164. int64 instance_id = 6;
  165. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  166. string annotation_spec_id = 7;
  167. // The display name of the AnnotationSpec that this Annotation pertains to.
  168. string display_name = 8;
  169. }
  170. // Annotation details specific to video action recognition.
  171. message VideoActionRecognitionAnnotation {
  172. // This Annotation applies to the time period represented by the TimeSegment.
  173. // If it's not set, the Annotation applies to the whole video.
  174. TimeSegment time_segment = 1;
  175. // The resource Id of the AnnotationSpec that this Annotation pertains to.
  176. string annotation_spec_id = 2;
  177. // The display name of the AnnotationSpec that this Annotation pertains to.
  178. string display_name = 3;
  179. }