Types for Google Cloud Videointelligence v1p2beta1 API¶
- class google.cloud.videointelligence_v1p2beta1.types.AnnotateVideoProgress(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video annotation progress. Included in the
metadata
field of theOperation
returned by theGetOperation
call of thegoogle::longrunning::Operations
service.- annotation_progress¶
Progress metadata for all videos specified in
AnnotateVideoRequest
.- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.VideoAnnotationProgress]
- class google.cloud.videointelligence_v1p2beta1.types.AnnotateVideoRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video annotation request.
- input_uri¶
Input video location. Currently, only Google Cloud Storage URIs are supported, which must be specified in the following format:
gs://bucket-id/object-id
(other URI formats return [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]). For more information, see Request URIs. A video URI may include wildcards inobject-id
, and thus identify multiple videos. Supported wildcards: ‘*’ to match 0 or more characters; ‘?’ to match 1 character. If unset, the input video should be embedded in the request asinput_content
. If set,input_content
should be unset.- Type
- input_content¶
The video data bytes. If unset, the input video(s) should be specified via
input_uri
. If set,input_uri
should be unset.- Type
- features¶
Required. Requested video annotation features.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.Feature]
- video_context¶
Additional video context and/or feature-specific parameters.
- output_uri¶
Optional. Location where the output (in JSON format) should be stored. Currently, only Google Cloud Storage URIs are supported, which must be specified in the following format:
gs://bucket-id/object-id
(other URI formats return [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]). For more information, see Request URIs.- Type
- class google.cloud.videointelligence_v1p2beta1.types.AnnotateVideoResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video annotation response. Included in the
response
field of theOperation
returned by theGetOperation
call of thegoogle::longrunning::Operations
service.- annotation_results¶
Annotation results for all videos specified in
AnnotateVideoRequest
.- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.VideoAnnotationResults]
- class google.cloud.videointelligence_v1p2beta1.types.Entity(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Detected entity from video analysis.
- entity_id¶
Opaque entity ID. Some IDs may be available in Google Knowledge Graph Search API.
- Type
- class google.cloud.videointelligence_v1p2beta1.types.ExplicitContentAnnotation(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Explicit content annotation (based on per-frame visual signals only). If no explicit content has been detected in a frame, no annotations are present for that frame.
- frames¶
All video frames where explicit content was detected.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.ExplicitContentFrame]
- class google.cloud.videointelligence_v1p2beta1.types.ExplicitContentDetectionConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Config for EXPLICIT_CONTENT_DETECTION.
- class google.cloud.videointelligence_v1p2beta1.types.ExplicitContentFrame(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video frame level annotation results for explicit content.
- time_offset¶
Time-offset, relative to the beginning of the video, corresponding to the video frame for this location.
- pornography_likelihood¶
Likelihood of the pornography content..
- class google.cloud.videointelligence_v1p2beta1.types.Feature(value)[source]¶
Bases:
proto.enums.Enum
Video annotation feature.
- Values:
- FEATURE_UNSPECIFIED (0):
Unspecified.
- LABEL_DETECTION (1):
Label detection. Detect objects, such as dog or flower.
- SHOT_CHANGE_DETECTION (2):
Shot change detection.
- EXPLICIT_CONTENT_DETECTION (3):
Explicit content detection.
- TEXT_DETECTION (7):
OCR text detection and tracking.
- OBJECT_TRACKING (9):
Object detection and tracking.
- class google.cloud.videointelligence_v1p2beta1.types.LabelAnnotation(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Label annotation.
- entity¶
Detected entity.
- category_entities¶
Common categories for the detected entity. E.g. when the label is
Terrier
the category is likelydog
. And in some cases there might be more than one categories e.g.Terrier
could also be apet
.- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.Entity]
- segments¶
All video segments where a label was detected.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.LabelSegment]
- frames¶
All video frames where a label was detected.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.LabelFrame]
- class google.cloud.videointelligence_v1p2beta1.types.LabelDetectionConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Config for LABEL_DETECTION.
- label_detection_mode¶
What labels should be detected with LABEL_DETECTION, in addition to video-level labels or segment-level labels. If unspecified, defaults to
SHOT_MODE
.
- stationary_camera¶
Whether the video has been shot from a stationary (i.e. non-moving) camera. When set to true, might improve detection accuracy for moving objects. Should be used with
SHOT_AND_FRAME_MODE
enabled.- Type
- class google.cloud.videointelligence_v1p2beta1.types.LabelDetectionMode(value)[source]¶
Bases:
proto.enums.Enum
Label detection mode.
- Values:
- LABEL_DETECTION_MODE_UNSPECIFIED (0):
Unspecified.
- SHOT_MODE (1):
Detect shot-level labels.
- FRAME_MODE (2):
Detect frame-level labels.
- SHOT_AND_FRAME_MODE (3):
Detect both shot-level and frame-level labels.
- class google.cloud.videointelligence_v1p2beta1.types.LabelFrame(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video frame level annotation results for label detection.
- time_offset¶
Time-offset, relative to the beginning of the video, corresponding to the video frame for this location.
- class google.cloud.videointelligence_v1p2beta1.types.LabelSegment(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video segment level annotation results for label detection.
- segment¶
Video segment where a label was detected.
- class google.cloud.videointelligence_v1p2beta1.types.Likelihood(value)[source]¶
Bases:
proto.enums.Enum
Bucketized representation of likelihood.
- Values:
- LIKELIHOOD_UNSPECIFIED (0):
Unspecified likelihood.
- VERY_UNLIKELY (1):
Very unlikely.
- UNLIKELY (2):
Unlikely.
- POSSIBLE (3):
Possible.
- LIKELY (4):
Likely.
- VERY_LIKELY (5):
Very likely.
- class google.cloud.videointelligence_v1p2beta1.types.NormalizedBoundingBox(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Normalized bounding box. The normalized vertex coordinates are relative to the original image. Range: [0, 1].
- class google.cloud.videointelligence_v1p2beta1.types.NormalizedBoundingPoly(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Normalized bounding polygon for text (that might not be aligned with axis). Contains list of the corner points in clockwise order starting from top-left corner. For example, for a rectangular bounding box: When the text is horizontal it might look like: 0—-1 | | 3—-2
When it’s clockwise rotated 180 degrees around the top-left corner it becomes: 2—-3 | | 1—-0
and the vertex order will still be (0, 1, 2, 3). Note that values can be less than 0, or greater than 1 due to trignometric calculations for location of the box.
- vertices¶
Normalized vertices of the bounding polygon.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.NormalizedVertex]
- class google.cloud.videointelligence_v1p2beta1.types.NormalizedVertex(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.
- class google.cloud.videointelligence_v1p2beta1.types.ObjectTrackingAnnotation(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Annotations corresponding to one tracked object.
This message has oneof fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.
- segment¶
Non-streaming batch mode ONLY. Each object track corresponds to one video segment where it appears.
This field is a member of oneof
track_info
.
- track_id¶
Streaming mode ONLY. In streaming mode, we do not know the end time of a tracked object before it is completed. Hence, there is no VideoSegment info returned. Instead, we provide a unique identifiable integer track_id so that the customers can correlate the results of the ongoing ObjectTrackAnnotation of the same track_id over time.
This field is a member of oneof
track_info
.- Type
- entity¶
Entity to specify the object category that this track is labeled as.
- frames¶
Information corresponding to all frames where this object track appears.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.ObjectTrackingFrame]
- class google.cloud.videointelligence_v1p2beta1.types.ObjectTrackingFrame(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video frame level annotations for object detection and tracking. This field stores per frame location, time offset, and confidence.
- normalized_bounding_box¶
The normalized bounding box location of this object track for the frame.
- time_offset¶
The timestamp of the frame in microseconds.
- class google.cloud.videointelligence_v1p2beta1.types.ShotChangeDetectionConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Config for SHOT_CHANGE_DETECTION.
- class google.cloud.videointelligence_v1p2beta1.types.TextAnnotation(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Annotations related to one detected OCR text snippet. This will contain the corresponding text, confidence value, and frame level information for each detection.
- segments¶
All video segments where OCR detected text appears.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.TextSegment]
- class google.cloud.videointelligence_v1p2beta1.types.TextDetectionConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Config for TEXT_DETECTION.
- class google.cloud.videointelligence_v1p2beta1.types.TextFrame(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video frame level annotation results for text annotation (OCR). Contains information regarding timestamp and bounding box locations for the frames containing detected OCR text snippets.
- rotated_bounding_box¶
Bounding polygon of the detected text for this frame.
- time_offset¶
Timestamp of this frame.
- class google.cloud.videointelligence_v1p2beta1.types.TextSegment(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video segment level annotation results for text detection.
- segment¶
Video segment where a text snippet was detected.
- confidence¶
Confidence for the track of detected text. It is calculated as the highest over all frames where OCR detected text appears.
- Type
- frames¶
Information related to the frames where OCR detected text appears.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.TextFrame]
- class google.cloud.videointelligence_v1p2beta1.types.VideoAnnotationProgress(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Annotation progress for a single video.
- input_uri¶
Video file location in Google Cloud Storage.
- Type
- progress_percent¶
Approximate percentage processed thus far. Guaranteed to be 100 when fully processed.
- Type
- start_time¶
Time when the request was received.
- update_time¶
Time of the most recent update.
- class google.cloud.videointelligence_v1p2beta1.types.VideoAnnotationResults(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Annotation results for a single video.
- input_uri¶
Video file location in Google Cloud Storage.
- Type
- segment_label_annotations¶
Label annotations on video level or user specified segment level. There is exactly one element for each unique label.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.LabelAnnotation]
- shot_label_annotations¶
Label annotations on shot level. There is exactly one element for each unique label.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.LabelAnnotation]
- frame_label_annotations¶
Label annotations on frame level. There is exactly one element for each unique label.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.LabelAnnotation]
- shot_annotations¶
Shot annotations. Each shot is represented as a video segment.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.VideoSegment]
- explicit_annotation¶
Explicit content annotation.
- text_annotations¶
OCR text detection and tracking. Annotations for list of detected text snippets. Each will have list of frame information associated with it.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.TextAnnotation]
- object_annotations¶
Annotations for list of objects detected and tracked in video.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.ObjectTrackingAnnotation]
- error¶
If set, indicates an error. Note that for a single
AnnotateVideoRequest
some videos may succeed and some may fail.- Type
google.rpc.status_pb2.Status
- class google.cloud.videointelligence_v1p2beta1.types.VideoContext(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video context and/or feature-specific parameters.
- segments¶
Video segments to annotate. The segments may overlap and are not required to be contiguous or span the whole video. If unspecified, each video is treated as a single segment.
- Type
MutableSequence[google.cloud.videointelligence_v1p2beta1.types.VideoSegment]
- label_detection_config¶
Config for LABEL_DETECTION.
- shot_change_detection_config¶
Config for SHOT_CHANGE_DETECTION.
- explicit_content_detection_config¶
Config for EXPLICIT_CONTENT_DETECTION.
- text_detection_config¶
Config for TEXT_DETECTION.
- class google.cloud.videointelligence_v1p2beta1.types.VideoSegment(mapping=None, *, ignore_unknown_fields=False, **kwargs)[source]¶
Bases:
proto.message.Message
Video segment.
- start_time_offset¶
Time-offset, relative to the beginning of the video, corresponding to the start of the segment (inclusive).
- end_time_offset¶
Time-offset, relative to the beginning of the video, corresponding to the end of the segment (inclusive).