aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/ai/vision/v1/primitives.proto
blob: 1e2f79f25b69ef10354c0d2313cbdcad22d58838 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
syntax = "proto3";

package yandex.cloud.ai.vision.v1;

option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/ai/vision/v1;vision";
option java_package = "yandex.cloud.api.ai.vision.v1";

message Polygon {
  // The bounding polygon vertices.
  repeated Vertex vertices = 1;
}

message Vertex {
  // X coordinate in pixels.
  int64 x = 1;

  // Y coordinate in pixels.
  int64 y = 2;
}