You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
363 B
22 lines
363 B
4 months ago
|
syntax = "proto2";
|
||
|
|
||
|
package android.automotive.computepipe.example;
|
||
|
|
||
|
message BoundingBox {
|
||
|
optional int32 top_x = 1;
|
||
|
optional int32 top_y = 2;
|
||
|
optional int32 width = 3;
|
||
|
optional int32 height = 4;
|
||
|
};
|
||
|
|
||
|
message Pose {
|
||
|
optional float pan = 1;
|
||
|
optional float tilt = 2;
|
||
|
}
|
||
|
|
||
|
message FaceOutput {
|
||
|
optional BoundingBox box = 1;
|
||
|
|
||
|
optional Pose pose = 2;
|
||
|
};
|