blob: 4c2e1302276999583755d10a914f55a24635b9c3 [file] [log] [blame]
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
syntax = "proto2";
package tflite.task.vision;
// An integer bounding box, axis aligned.
message BoundingBox {
// The X coordinate of the top-left corner, in pixels.
optional int32 origin_x = 1;
// The Y coordinate of the top-left corner, in pixels.
optional int32 origin_y = 2;
// The width of the bounding box, in pixels.
optional int32 width = 3;
// The height of the bounding box, in pixels.
optional int32 height = 4;
}