Skip to content
Merged
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
10 changes: 5 additions & 5 deletions docs/vision-usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ will also provide their known geographical locations if available.
-33.857123
>>> landmarks[0].locations[0].longitude
151.213921
>>> landmarks[0].bounding_poly.vertices[0].x_coordinate
>>> landmarks[0].bounds.vertices[0].x_coordinate
78
>>> landmarks[0].bounding_poly.vertices[0].y_coordinate
>>> landmarks[0].bounds.vertices[0].y_coordinate

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

162


Expand All @@ -197,11 +197,11 @@ iterating through the detected logo's ``vertices``.
'Google'
>>> first_logo.score
0.9795432
>>> print(len(first_logo.bounding_poly.vertices))
>>> print(len(first_logo.bounds.vertices))
4
>>> first_logo.bounding_poly.vertices[0].x_coordinate
>>> first_logo.bounds.vertices[0].x_coordinate
78
>>> first_logo.bounding_poly.vertices[0].y_coordinate
>>> first_logo.bounds.vertices[0].y_coordinate
62


Expand Down