Export DICOM as tif 16bit problems

Hello everyone, I wanted to comment on a couple of problems
How can I export a serie of DICOM files to a serie of individual 16b tif files.
When I try it I get a multi-image TIFF with broken levels.

When I try to export in any other type of image file I get error

on the other hand, when I import a series of tiff 16b files and
export it as Dicom, I also get errors in the levels when I open it in another Dicom reader
Thanks in advance and excuse my english
IBL


It might be that your data is not compatible with tiff. It looks like a datatype wrap-around issue or simillar. I tried saving and reloading the MRHead sample data and although the orientation information was not preserved the images looked fine. You could start by looking at what’s different in the Volume Information between that data and yours.

By the way, tiff is not a good format for saving volumetric data (not only because the orientation is lost, but also because only supports limited data types) so Slicer’s implementation may not be the best. If you must use tiff maybe better to find a dedicated tool that people use a lot to work with tiff, like ImageMagick or FIJI.

For many years many groups have been desperately trying to make TIFF work for biomedical imaging, but it has become obvious that it is just a too complicated and too limited format.

It has never been usable for 3D images because it does not have standard fields for storing slice spacing or axis directions.

TIFF has been used for microscopy imaging, but due to failure of bigtiff and other reasons even the microscopy people are moving away from it now and developing OME-Zarr instead.

For 3D images, I would recommend to use NRRD format. It is extremely simple yet sufficient for most applications, and has readers/writers in all environments.

Thank you very much for your answer, I will study it

Thanks a lot Andrass