Interface PersonDetectionAnnotationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PersonDetectionAnnotation
,PersonDetectionAnnotation.Builder
public interface PersonDetectionAnnotationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Track
getTracks(int index)
The detected tracks of a person.int
getTracksCount()
The detected tracks of a person.List<Track>
getTracksList()
The detected tracks of a person.TrackOrBuilder
getTracksOrBuilder(int index)
The detected tracks of a person.List<? extends TrackOrBuilder>
getTracksOrBuilderList()
The detected tracks of a person.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTracksList
List<Track> getTracksList()
The detected tracks of a person.
repeated .google.cloud.videointelligence.v1p3beta1.Track tracks = 1;
-
getTracks
Track getTracks(int index)
The detected tracks of a person.
repeated .google.cloud.videointelligence.v1p3beta1.Track tracks = 1;
-
getTracksCount
int getTracksCount()
The detected tracks of a person.
repeated .google.cloud.videointelligence.v1p3beta1.Track tracks = 1;
-
getTracksOrBuilderList
List<? extends TrackOrBuilder> getTracksOrBuilderList()
The detected tracks of a person.
repeated .google.cloud.videointelligence.v1p3beta1.Track tracks = 1;
-
getTracksOrBuilder
TrackOrBuilder getTracksOrBuilder(int index)
The detected tracks of a person.
repeated .google.cloud.videointelligence.v1p3beta1.Track tracks = 1;
-
-