allen-cell-animated / volume-viewer

https://allen-cell-animated.github.io/volume-viewer/
Other
92 stars 7 forks source link

multiresolution in 2d mode #91

Closed toloudis closed 6 months ago

toloudis commented 1 year ago

Use Case

When viewing a single slice, the viewer could support higher resolution data. This would provide a more detailed and accurate view of 2d slices of z-stacks for users.

Solution

Zarr is the best example of precomputed multiresolution data. We have the opportunity to use a fixed size cache of full-res (up to some practical limit) tiles of individual slices. 3D mode would still use the same data structure it uses now but 2D could use higher res slices. We can investigate google maps-like dynamic loading when zooming, taking viewport dimensions into account, or even something like OpenSeaDragon to present 2d.

Min requirement is to let single slice viewing use higher resolutions.

toloudis commented 1 year ago

also see #115

frasercl commented 6 months ago

We did this! In #163