mobie / mobie-viewer-fiji

BSD 2-Clause "Simplified" License
30 stars 12 forks source link

Saving OME-Zarr is slower now? #1171

Open tischi opened 3 months ago

tischi commented 3 months ago

This may be the chunking, maybe too many chunks and resolutions.

For the old version we used:

        // propose reasonable mipmap settings
        final int maxNumElements = 64 * 64 * 64;
        final ExportMipmapInfo autoMipmapSettings = ProposeMipmaps.proposeMipmaps(
            new BasicViewSetup(0, "", size, voxelSize),
            maxNumElements);

        int[][] resolutions = autoMipmapSettings.getExportResolutions();
        int[][] subdivisions = autoMipmapSettings.getSubdivisions();

see also: https://forum.image.sc/t/mobie-slow-when-saving-data/98730