Interface FaceDetectionAnnotationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FaceDetectionAnnotation
,FaceDetectionAnnotation.Builder
public interface FaceDetectionAnnotationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getThumbnail()
The thumbnail of a person's face.Track
getTracks(int index)
The face tracks with attributes.int
getTracksCount()
The face tracks with attributes.List<Track>
getTracksList()
The face tracks with attributes.TrackOrBuilder
getTracksOrBuilder(int index)
The face tracks with attributes.List<? extends TrackOrBuilder>
getTracksOrBuilderList()
The face tracks with attributes.String
getVersion()
Feature version.com.google.protobuf.ByteString
getVersionBytes()
Feature version.-
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 face tracks with attributes.
repeated .google.cloud.videointelligence.v1.Track tracks = 3;
-
getTracks
Track getTracks(int index)
The face tracks with attributes.
repeated .google.cloud.videointelligence.v1.Track tracks = 3;
-
getTracksCount
int getTracksCount()
The face tracks with attributes.
repeated .google.cloud.videointelligence.v1.Track tracks = 3;
-
getTracksOrBuilderList
List<? extends TrackOrBuilder> getTracksOrBuilderList()
The face tracks with attributes.
repeated .google.cloud.videointelligence.v1.Track tracks = 3;
-
getTracksOrBuilder
TrackOrBuilder getTracksOrBuilder(int index)
The face tracks with attributes.
repeated .google.cloud.videointelligence.v1.Track tracks = 3;
-
getThumbnail
com.google.protobuf.ByteString getThumbnail()
The thumbnail of a person's face.
bytes thumbnail = 4;
- Returns:
- The thumbnail.
-
getVersion
String getVersion()
Feature version.
string version = 5;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
Feature version.
string version = 5;
- Returns:
- The bytes for version.
-
-