Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Video Intelligence: Remove previous auto-gen layer. #3975

Merged
merged 3 commits into from
Sep 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion videointelligence/google/cloud/gapic/__init__.py

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion videointelligence/google/cloud/proto/__init__.py

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,18 @@

from __future__ import absolute_import

from google.cloud.gapic.videointelligence.v1beta1.video_intelligence_service_client import VideoIntelligenceServiceClient
from google.cloud.gapic.videointelligence.v1beta1 import enums

from google.cloud.videointelligence_v1beta1 import types
from google.cloud.videointelligence_v1beta1.gapic import enums
from google.cloud.videointelligence_v1beta1.gapic import video_intelligence_service_client


class VideoIntelligenceServiceClient(
video_intelligence_service_client.VideoIntelligenceServiceClient):
__doc__ = video_intelligence_service_client.VideoIntelligenceServiceClient.__doc__
enums = enums


__all__ = (
'enums',
'types',
'VideoIntelligenceServiceClient',
)
'VideoIntelligenceServiceClient', )
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2016 Google Inc. All rights reserved.
# Copyright 2017, Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -41,7 +41,7 @@ class LabelLevel(object):
VIDEO_LEVEL (int): Video-level. Corresponds to the whole video.
SEGMENT_LEVEL (int): Segment-level. Corresponds to one of ``AnnotateSpec.segments``.
SHOT_LEVEL (int): Shot-level. Corresponds to a single shot (i.e. a series of frames
without a major camera position or background change).
without a major camera position or background change).
FRAME_LEVEL (int): Frame-level. Corresponds to a single video frame.
"""
LABEL_LEVEL_UNSPECIFIED = 0
Expand Down
Loading