-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vision: Add batch processing (#2978)
* Add Vision batch support to the surface.
- Loading branch information
1 parent
4d2a7d1
commit db0dc85
Showing
13 changed files
with
289 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# 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): | ||
"""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): | ||
"""Perform batch detection of images. | ||
:rtype: list | ||
:returns: List of | ||
:class:`~google.cloud.vision.annotations.Annotations`. | ||
""" | ||
results = self._client._vision_api.annotate(self.images) | ||
self._images = [] | ||
return results |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.