
com.google.cloud.visionai.v1.StreamAnnotationOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2024 Google LLC
*
* 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
*
* https://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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/visionai/v1/annotations.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.visionai.v1;
public interface StreamAnnotationOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.visionai.v1.StreamAnnotation)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Annotation for type ACTIVE_ZONE
*
*
* .google.cloud.visionai.v1.NormalizedPolygon active_zone = 5;
*
* @return Whether the activeZone field is set.
*/
boolean hasActiveZone();
/**
*
*
*
* Annotation for type ACTIVE_ZONE
*
*
* .google.cloud.visionai.v1.NormalizedPolygon active_zone = 5;
*
* @return The activeZone.
*/
com.google.cloud.visionai.v1.NormalizedPolygon getActiveZone();
/**
*
*
*
* Annotation for type ACTIVE_ZONE
*
*
* .google.cloud.visionai.v1.NormalizedPolygon active_zone = 5;
*/
com.google.cloud.visionai.v1.NormalizedPolygonOrBuilder getActiveZoneOrBuilder();
/**
*
*
*
* Annotation for type CROSSING_LINE
*
*
* .google.cloud.visionai.v1.NormalizedPolyline crossing_line = 6;
*
* @return Whether the crossingLine field is set.
*/
boolean hasCrossingLine();
/**
*
*
*
* Annotation for type CROSSING_LINE
*
*
* .google.cloud.visionai.v1.NormalizedPolyline crossing_line = 6;
*
* @return The crossingLine.
*/
com.google.cloud.visionai.v1.NormalizedPolyline getCrossingLine();
/**
*
*
*
* Annotation for type CROSSING_LINE
*
*
* .google.cloud.visionai.v1.NormalizedPolyline crossing_line = 6;
*/
com.google.cloud.visionai.v1.NormalizedPolylineOrBuilder getCrossingLineOrBuilder();
/**
*
*
*
* ID of the annotation. It must be unique when used in the certain context.
* For example, all the annotations to one input streams of a Vision AI
* application.
*
*
* string id = 1;
*
* @return The id.
*/
java.lang.String getId();
/**
*
*
*
* ID of the annotation. It must be unique when used in the certain context.
* For example, all the annotations to one input streams of a Vision AI
* application.
*
*
* string id = 1;
*
* @return The bytes for id.
*/
com.google.protobuf.ByteString getIdBytes();
/**
*
*
*
* User-friendly name for the annotation.
*
*
* string display_name = 2;
*
* @return The displayName.
*/
java.lang.String getDisplayName();
/**
*
*
*
* User-friendly name for the annotation.
*
*
* string display_name = 2;
*
* @return The bytes for displayName.
*/
com.google.protobuf.ByteString getDisplayNameBytes();
/**
*
*
*
* The Vision AI stream resource name.
*
*
* string source_stream = 3;
*
* @return The sourceStream.
*/
java.lang.String getSourceStream();
/**
*
*
*
* The Vision AI stream resource name.
*
*
* string source_stream = 3;
*
* @return The bytes for sourceStream.
*/
com.google.protobuf.ByteString getSourceStreamBytes();
/**
*
*
*
* The actual type of Annotation.
*
*
* .google.cloud.visionai.v1.StreamAnnotationType type = 4;
*
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
*
*
* The actual type of Annotation.
*
*
* .google.cloud.visionai.v1.StreamAnnotationType type = 4;
*
* @return The type.
*/
com.google.cloud.visionai.v1.StreamAnnotationType getType();
com.google.cloud.visionai.v1.StreamAnnotation.AnnotationPayloadCase getAnnotationPayloadCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy