You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a 384 well-plate ome-zarr file where each well has a single field of shape (4, 5, 4096, 4096) (CZYX). When I try to open this I get the following error message: ValueError: Shape of in dividual tiles in multiscale (16384, 24576) cannot exceed GL_MAX_TEXTURE_SIZE 16384. Rendering is currently in 2D mode.
The text was updated successfully, but these errors were encountered:
I am encountering the same error with a 384 well-plate, six sites per well, each of shape (5, 2048, 2048) (CYX). The error mentions a slightly different dimension: (8192, 18432) instead of your (16384, 24576).
Hey both!
If you have a full 384 well plate, the question for napari will be: "How big is the stitched image of all the wells at lowest resolution". If you only have relatively few pyramid levels, the lowest resolution of each well stitched together for the whole plate is still an image that is too large to load with the GL_MAX_TEXTURE_SIZE of your GPU.
An easy way to avoid this is to ensure you create more pyramid levels, thus having the lowest resolution below the GL_MAX_TEXTURE_SIZE limit. By just adding 1-2 extra pyramid levels, you probably get there. Many GPUs have a limit around 16k. To be save, maybe add 3-4 pyramid levels => also works on lower quality GPUs still.
Hi,
I have a 384 well-plate ome-zarr file where each well has a single field of shape (4, 5, 4096, 4096) (CZYX). When I try to open this I get the following error message:
ValueError: Shape of in dividual tiles in multiscale (16384, 24576) cannot exceed GL_MAX_TEXTURE_SIZE 16384. Rendering is currently in 2D mode.
The text was updated successfully, but these errors were encountered: