We're Hiring!

Visualize the omero raw data

General user discussion about using the OMERO platform to its fullest. Please ask new questions at https://forum.image.sc/tags/omero
Please note:
Historical discussions about OMERO. Please look for and ask new questions at https://forum.image.sc/tags/omero

There are workflow guides for various OMERO functions on our help site - http://help.openmicroscopy.org

You should find answers to any basic questions about using the clients there.

Visualize the omero raw data

Postby willy » Thu Nov 03, 2011 11:28 pm

Hi OME team,

In our research project, we have implemented the customized visualization tool(WIB) to view the omero data.
It works for most of the data except the unsigned 16 bit images.

Working one:
http://ccdb-portal.crbs.ucsd.edu/WebIma ... raID=34926

Unsigned 16 bit (Not working):
http://ccdb-portal.crbs.ucsd.edu/WebIma ... omeraID=53

In order to display this unsigned 16bit image correctly, we need the information about the data range.
Can you tell us where we can find that information in the database?

Thanks,
Willy
willy
 
Posts: 4
Joined: Thu Sep 15, 2011 1:12 am

Re: Visualize the omero raw data

Postby wmoore » Fri Nov 04, 2011 6:29 am

For a particular channel, you can get the range of pixel intensities using

Code: Select all
Channel.getStatsInfo().getGlobalMin().getValue()
Channel.getStatsInfo().getGlobalMax().getValue()


If you're using the Python Blitz Gateway, you can do
Code: Select all
image = conn.getObject("Image", imageId)
for c in image.getChannels():
   minC = c.getWindowMin()
   maxC = c.getWindowMax()

which calls the same methods as above.

Will.

PS - Nice viewer!
User avatar
wmoore
Team Member
 
Posts: 674
Joined: Mon May 18, 2009 12:46 pm


Return to User Discussion

Who is online

Users browsing this forum: Google [Bot] and 1 guest

cron