Open will-moore opened 4 years ago
See https://forum.image.sc/t/speed-of-conn-getthumbnailset-in-omero-py-vs-omero-web/39328
Default usage of conn.getThumbnailSet(ids) and image.getThumbnail() will use size of 64 which is slower than using the OMERO's default size of 96.
conn.getThumbnailSet(ids)
image.getThumbnail()
64
96
By default, the BlitzGateway should use size 96, to avoid the need for the user to know this "magic" number.
BlitzGateway
cc @chris-allan @joshmoore
See https://forum.image.sc/t/speed-of-conn-getthumbnailset-in-omero-py-vs-omero-web/39328
Default usage of
conn.getThumbnailSet(ids)
andimage.getThumbnail()
will use size of64
which is slower than using the OMERO's default size of96
.By default, the
BlitzGateway
should use size96
, to avoid the need for the user to know this "magic" number.cc @chris-allan @joshmoore