Skip to content

Compression/conversion of floats (for OME-Zarr) #116

@tischi

Description

@tischi

@constantinpape

  1. which compression are you using for OME-Zarr ?
  2. could it be that this does not work well for floating point data?

Could we add an option to the addImage for a conversion to uint8 ?
I guess for this one would need an array conversion_min_max[ 2 ], which would then be used for linear conversion:

min = conversion_min_max[ 0 ]
max = conversion_min_max[ 1 ]
value_unit8 = 255 * ( value - min ) / ( max - mix )

I am asking, because I am dealing with a floating point dataset and I have a feeling that it is much slower to load than from a unit8 dataset that is of comparable size, chunking and dimensions. Of course they are not the same, so I am not sure.

Maybe I could first try to "manually" convert the float to unit8 and see if that indeed helps.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions