-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Vision: Add batch processing #2978
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,6 +155,7 @@ | |
|
||
vision-usage | ||
vision-annotations | ||
vision-batch | ||
vision-client | ||
vision-color | ||
vision-entity | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Vision Batch | ||
============ | ||
|
||
Batch | ||
~~~~~ | ||
|
||
.. automodule:: google.cloud.vision.batch | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright 2017 Google Inc. | ||
# | ||
# 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 | ||
# | ||
# http://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. | ||
|
||
"""Batch multiple images into one request.""" | ||
|
||
|
||
class Batch(object): | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
"""Batch of images to process. | ||
|
||
:type client: :class:`~google.cloud.vision.client.Client` | ||
:param client: Vision client. | ||
""" | ||
def __init__(self, client): | ||
self._client = client | ||
self._images = [] | ||
|
||
def add_image(self, image, features): | ||
"""Add image to batch request. | ||
|
||
:type image: :class:`~google.cloud.vision.image.Image` | ||
:param image: Istance of ``Image``. | ||
|
||
:type features: list | ||
:param features: List of :class:`~google.cloud.vision.feature.Feature`. | ||
""" | ||
self._images.append((image, features)) | ||
|
||
@property | ||
def images(self): | ||
"""List of images to process. | ||
|
||
:rtype: list | ||
:returns: List of :class:`~google.cloud.vision.image.Image`. | ||
""" | ||
return self._images | ||
|
||
def detect(self): | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
"""Perform batch detection of images. | ||
|
||
:rtype: list | ||
:returns: List of | ||
:class:`~google.cloud.vision.annotations.Annotations`. | ||
""" | ||
return self._client._vision_api.annotate(self.images) |
This comment was marked as spam.
Sorry, something went wrong.