Hello,
I need to retrieve the image with a full meta-data from the Omero-server trough python API. I can retrieve the image itself (code below), but I cannot find in the documentation how to get file meta-data. Specifically, I need exposure from metadata. Could you?
conn = BlitzGateway(input("Username: "),getpass("OMERO Password: "),host=HOST, secure=True)
conn.connect()
image_id =41974
image = conn.getObject(“Image”, image_id)
print(image.getName(), image.getDescription())
print(“Z={},Chanells={} Frames={}”.format(image.getSizeZ(),image.getSizeC(),image.getSizeT()))
Thank you
Thank you!