This is my first time that I want to import a file using omero.insight and then search by its metadata. I managed to import a file, however, I could not find it even by searching its name.
I imported a sample file called "tubhiswt_C0.ome.tif"
Then I tried to find it using the following code:
- Code: Select all
for i in conn.searchObjects(["Image"], "tubhiswt"):
print i.getId(), i.getName()
But it could not find any result. Could you please help me with that.
Another question is that how I can label this file with other keywords which can be searched by the above mentioned code? I tried to use annotations but it did not work.
Best regards,
pz3977