-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
web_detect.py
100 lines (77 loc) · 3.42 KB
/
web_detect.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/usr/bin/env python
# Copyright 2017 Google LLC
#
# 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.
"""Demonstrates web detection using the Google Cloud Vision API.
Example usage:
python web_detect.py https://goo.gl/X4qcB6
python web_detect.py ../detect/resources/landmark.jpg
python web_detect.py gs://your-bucket/image.png
"""
# [START vision_web_detection_tutorial]
# [START vision_web_detection_tutorial_imports]
import argparse
import io
from google.cloud import vision
# [END vision_web_detection_tutorial_imports]
def annotate(path):
"""Returns web annotations given the path to an image."""
# [START vision_web_detection_tutorial_annotate]
client = vision.ImageAnnotatorClient()
if path.startswith('http') or path.startswith('gs:'):
image = vision.Image()
image.source.image_uri = path
else:
with io.open(path, 'rb') as image_file:
content = image_file.read()
image = vision.Image(content=content)
web_detection = client.web_detection(image=image).web_detection
# [END vision_web_detection_tutorial_annotate]
return web_detection
def report(annotations):
"""Prints detected features in the provided web annotations."""
# [START vision_web_detection_tutorial_print_annotations]
if annotations.pages_with_matching_images:
print('\n{} Pages with matching images retrieved'.format(
len(annotations.pages_with_matching_images)))
for page in annotations.pages_with_matching_images:
print('Url : {}'.format(page.url))
if annotations.full_matching_images:
print('\n{} Full Matches found: '.format(
len(annotations.full_matching_images)))
for image in annotations.full_matching_images:
print('Url : {}'.format(image.url))
if annotations.partial_matching_images:
print('\n{} Partial Matches found: '.format(
len(annotations.partial_matching_images)))
for image in annotations.partial_matching_images:
print('Url : {}'.format(image.url))
if annotations.web_entities:
print('\n{} Web entities found: '.format(
len(annotations.web_entities)))
for entity in annotations.web_entities:
print('Score : {}'.format(entity.score))
print('Description: {}'.format(entity.description))
# [END vision_web_detection_tutorial_print_annotations]
if __name__ == '__main__':
# [START vision_web_detection_tutorial_run_application]
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter)
path_help = str('The image to detect, can be web URI, '
'Google Cloud Storage, or path to local file.')
parser.add_argument('image_url', help=path_help)
args = parser.parse_args()
report(annotate(args.image_url))
# [END vision_web_detection_tutorial_run_application]
# [END vision_web_detection_tutorial]