Internal change

PiperOrigin-RevId: 514763674
This commit is contained in:
MediaPipe Team 2023-03-07 09:56:38 -08:00 committed by Copybara-Service
parent dbd6d72696
commit 414031867e
2 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,9 @@ syntax = "proto2";
package mediapipe; package mediapipe;
option java_package = "com.google.mediapipe.util.proto";
option java_outer_classname = "ColorProto";
message Color { message Color {
optional int32 r = 1; optional int32 r = 1;
optional int32 g = 2; optional int32 g = 2;

View File

@ -18,6 +18,9 @@ package mediapipe;
import "mediapipe/util/color.proto"; import "mediapipe/util/color.proto";
option java_package = "com.google.mediapipe.util.proto";
option java_outer_classname = "RenderDataProto";
// A RenderData is a collection of multiple RenderAnnotations. For example, a // A RenderData is a collection of multiple RenderAnnotations. For example, a
// face can be rendered using a group of annotations: a bounding box around the // face can be rendered using a group of annotations: a bounding box around the
// face (rectangle) and annotations for various face parts such as eyes, nose // face (rectangle) and annotations for various face parts such as eyes, nose