aics-int / napari-allencell-annotator

Other
0 stars 1 forks source link

Optimize loading large images #72

Closed memeramita closed 4 months ago

memeramita commented 4 months ago

The plugin now takes a long time to display large images. The bottleneck is when .data is called on BioImage objects. To optimize this, we plan to replace .data with .dask_data, which delays downloading the entire image at once.

Note: It seems to cause some lagging when viewing time-series images.