File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
vision/google/cloud/vision Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ Face Detection
130
130
an image and return the coordinates in the image of each `landmark type `_ that
131
131
was detected.
132
132
133
- .. _landmark type : https://cloud.google.com/vision/reference/rest/v1/images/annotate#type_1
133
+ .. _landmark type : https://cloud.google.com/vision/docs/ reference/rest/v1/images/annotate#type_1
134
134
135
135
.. code-block :: python
136
136
Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ class LandmarkTypes(Enum):
434
434
"""A representation of the face detection landmark types.
435
435
436
436
See:
437
- https://cloud.google.com/vision/reference/rest/v1/images/annotate#Type_1
437
+ https://cloud.google.com/vision/docs/ reference/rest/v1/images/annotate#type_1
438
438
"""
439
439
UNKNOWN_LANDMARK = 0
440
440
LEFT_EYE = 1
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class FeatureTypes(object):
19
19
"""Feature Types to indication which annotations to perform.
20
20
21
21
See:
22
- https://cloud.google.com/vision/reference/rest/v1/images/annotate#Type
22
+ https://cloud.google.com/vision/docs/ reference/rest/v1/images/annotate#Type
23
23
"""
24
24
CROP_HINTS = 'CROP_HINTS'
25
25
DOCUMENT_TEXT_DETECTION = 'DOCUMENT_TEXT_DETECTION'
@@ -45,7 +45,7 @@ class Feature(object):
45
45
feature type.
46
46
47
47
See:
48
- https://cloud.google.com/vision/reference/rest/v1/images/annotate#Feature
48
+ https://cloud.google.com/vision/docs/ reference/rest/v1/images/annotate#Feature
49
49
"""
50
50
def __init__ (self , feature_type , max_results = 1 ):
51
51
try :
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ class Position(object):
137
137
"""A 3D position in the image.
138
138
139
139
See:
140
- https://cloud.google.com/vision/reference/rest/v1/images/annotate#Position
140
+ https://cloud.google.com/vision/docs/ reference/rest/v1/images/annotate#Position
141
141
142
142
:type x_coordinate: float
143
143
:param x_coordinate: X position coordinate.
@@ -213,7 +213,7 @@ class Vertex(object):
213
213
"""A vertex represents a 2D point in the image.
214
214
215
215
See:
216
- https://cloud.google.com/vision/reference/rest/v1/images/annotate#Vertex
216
+ https://cloud.google.com/vision/docs/ reference/rest/v1/images/annotate#Vertex
217
217
218
218
:type x_coordinate: float
219
219
:param x_coordinate: X position coordinate.
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class Likelihood(Enum):
37
37
"""A representation of likelihood to give stable results across upgrades.
38
38
39
39
See:
40
- https://cloud.google.com/vision/reference/rest/v1/images/annotate#likelihood
40
+ https://cloud.google.com/vision/docs/ reference/rest/v1/images/annotate#likelihood
41
41
"""
42
42
UNKNOWN = 'UNKNOWN'
43
43
VERY_UNLIKELY = 'VERY_UNLIKELY'
You can’t perform that action at this time.
0 commit comments