com.clarifai.grpc.api.BoundingBoxOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface BoundingBoxOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.BoundingBox)
com.google.protobuf.MessageOrBuilder {
/**
*
* The top left of the bounding box normalized to the data dimension to be within [0-1.0]
*
*
* float top_row = 1 [(.clarifai.api.utils.cl_show_if_empty) = true];
* @return The topRow.
*/
float getTopRow();
/**
*
* The left column of the bounding box normalized to the data dimension to be within [0-1.0]
*
*
* float left_col = 2 [(.clarifai.api.utils.cl_show_if_empty) = true];
* @return The leftCol.
*/
float getLeftCol();
/**
*
* The bottom row of the bounding box normalized to the data dimension to be within [0-1.0]
*
*
* float bottom_row = 3 [(.clarifai.api.utils.cl_show_if_empty) = true];
* @return The bottomRow.
*/
float getBottomRow();
/**
*
* The right col of the bounding box normalized to the data dimension to be within [0-1.0]
*
*
* float right_col = 4 [(.clarifai.api.utils.cl_show_if_empty) = true];
* @return The rightCol.
*/
float getRightCol();
}