bioformats icon indicating copy to clipboard operation
bioformats copied to clipboard

Loading of indica tiff files

Open rharkes opened this issue 1 year ago • 2 comments

At the moment bioformats doesn't load indica tiff files. The python tifffile library can do it since version 2023.12.9.

The problem with the files is that they have 32 bit per pixel, but didn't set the TIFFTAG_SAMPLEFORMAT, so it defaults to UINT. However, it has to be SAMPLEFORMAT_IEEEFP.

See also: https://github.com/cgohlke/tifffile/blob/master/tifffile/tifffile.py#L8369 (the sampleformat is changed here) https://github.com/cgohlke/tifffile/blob/master/tifffile/tifffile.py#L10459 (this is how it is checked)

rharkes avatar May 14 '24 10:05 rharkes

Thanks @rharkes for reporting the issue. Are there any sample Indica Tiff files that could be used for testing? If you have some suitable samples and need an upload location then we recommend using https://zenodo.org/

dgault avatar May 15 '24 16:05 dgault

A sample file was posted at forum.image.sc. See also the comments regarding the file format.

cgohlke avatar May 15 '24 17:05 cgohlke