Hi,
Is there any ongoing work to add JPEG XL compression support for the OME-TIFF (ome.tif) format. In my experience, I’ve achieved about a 50% size reduction with this reasonable settings: {“level”: 90, “effort”: 5} compared to jpeg compression. That is quite substantial for WSI sizes. Implementing this could lead to significant storage cost savings.
An image exported with the tifffile library using JPEG XL compression can’t be opened in QuPath (which relies on Bio-Formats):
with tiff.TiffWriter(f'img.ome.tif', bigtiff=True) as tif:
tif.write(img, compression='jpegxl', compressionargs={"level":90, "effort":5})
Hi,
Is there any ongoing work to add JPEG XL compression support for the OME-TIFF (ome.tif) format. In my experience, I’ve achieved about a 50% size reduction with this reasonable settings: {“level”: 90, “effort”: 5} compared to jpeg compression. That is quite substantial for WSI sizes. Implementing this could lead to significant storage cost savings.
An image exported with the tifffile library using JPEG XL compression can’t be opened in QuPath (which relies on Bio-Formats):