Task:
Problem:
That library returns plain protobuf objects, which can be serialized to JSON using:
from google.protobuf.json_format import MessageToJson
serialized = MessageToJson(original)
This worked for me.
Found solution. It can not be converted to JSON but can be accessed like this:
print(logos[0].bounding_poly.vertices[0].x)