@constantinpape
- which compression are you using for OME-Zarr ?
- 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.
@constantinpape
Could we add an option to the
addImagefor a conversion touint8?I guess for this one would need an array
conversion_min_max[ 2 ], which would then be used for linear conversion: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.