filtering Still Images, Video/Animation, Z-Stack, ...
Posted: Wed Aug 24, 2011 7:16 pm
Hi,
I saw cellimages.ascb.org and there is a funtionality of filtering Still Images, Video/Animation, Z-Stack, Time Series.
Could you tell me how to do this from python shell (by search query)?
I'm generally querying images by
And after that, I just want to get ids of Still Images.
BK
I saw cellimages.ascb.org and there is a funtionality of filtering Still Images, Video/Animation, Z-Stack, Time Series.
Could you tell me how to do this from python shell (by search query)?
I'm generally querying images by
- Code: Select all
search = client.sf.createSearchService()
search.onlyType("Image")
search.byFullText('fluorescence')
ids1 = [x.id.val for x in search.results()]
And after that, I just want to get ids of Still Images.
BK