blob: 4fbffa4c757e5c96ec9c5fc63a7b8a280f8b0540 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
syntax = "proto3";
package yandex.cloud.ai.vision.v1;
import "yandex/cloud/ai/vision/v1/primitives.proto";
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 FaceAnnotation {
// An array of detected faces for the specified image.
repeated Face faces = 1;
}
message Face {
// Area on the image where the face is located.
Polygon bounding_box = 1;
}
|