Can't to annotate images larger than 20 000x20 000 pixels

Hello, I use Label studio to annotate large images(maps) for object detection task.
I have successfully uploaded large images to my project using local storage.
All images not exceeding 20 000x20 000 pixels in size are displayed for annotation.
But one map with a size of 28,000 x 31,000 is not displayed.
The Label studio is giving an error, as if there is no image file at the specified path.
image

However, the path appears to be correct, as other maps are able to open for labeling.
Perhaps there is some parameter like in the PIL library, by enlarging which you can upload images of a larger size than provided by default?

import PIL.Image

PIL.Image.MAX_IMAGE_PIXELS = 1000000000

LS doesn’t touch your data anyhow on the backend side. It’s your browser limitation. Check the browser console to see more error descriptions there.

1 Like