-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unsure if extra scene in file or sub-block attachment #83
Comments
I'll have a look at this. I'm still trying to get my head around what might be going on here. Are there 2 images: 1 mosaic, 1 standard, or is it a mosaic with 2 scenes, or is it something else? If it's the first case I can see that going wrong mostly because I haven't ever seen a mixed mosaic/starndard image before so the logic in the library probably goes sideways in that case. Thanks for catching this. |
Perhaps bfconvert turns pyramid levels into scenes? |
We think this is related to the fact that FIJI / ImageJ / BioFormats / something expands all available "image-like" objects into images in FIJI. See related: fiji/fiji#280 |
Just guessing, but could it be that this image a has a preview image attached, which is read by BioFormats as an additional series? (sebi06) |
Yea thats what we thought as well! |
System and Software
Description
A clear description of the bug
Using the test file
aicsimageio/tests/resources/variable_scene_shape_first_scene_pyramid.czi
-- We can tell this by how it is read in:The dims shape above shows that
aicspylibczi
is reading only a single scene, the first of which is mosaic. AND note that this file is also a pyramid and we are reading the highest resolution of the pyramid.But if we use
bfconvert
to convert this file to OME-TIFF we can see there are actually two scenes in the file.bfconvert -noflat -stitch aicsimageio/tests/resources/variable_scene_shape_first_scene_pyramid.czi test-convert.ome.tiff
-noflat
and-stitch
to ensure that this stays a single file and that the scenes stay together.Expected Behavior
What did you expect to happen instead?
All scene information to be returned from the reader.
The text was updated successfully, but these errors were encountered: