com.clarifai.grpc.api.PointOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface PointOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.Point)
com.google.protobuf.MessageOrBuilder {
/**
*
* The row location of the point. This has a [0.0-1.0] range with 0.0 being top row and 1.0
* being the bottom row.
*
*
* float row = 1 [(.clarifai.api.utils.cl_show_if_empty) = true];
* @return The row.
*/
float getRow();
/**
*
* The column location of the point. This has a [0.0-1.0] range with 0.0 being left col and 1.0
* being the right col.
*
*
* float col = 2 [(.clarifai.api.utils.cl_show_if_empty) = true];
* @return The col.
*/
float getCol();
/**
*
* Depth if applicable for the point.
*
*
* float z = 3;
* @return The z.
*/
float getZ();
/**
* .clarifai.api.Point.Visibility visibility = 4;
* @return The enum numeric value on the wire for visibility.
*/
int getVisibilityValue();
/**
* .clarifai.api.Point.Visibility visibility = 4;
* @return The visibility.
*/
com.clarifai.grpc.api.Point.Visibility getVisibility();
}