[FEATURE] Opening large images takes a long time #1115
mherzog01
started this conversation in
Ideas / Feature requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Our images are 35 MB BMP (e.g. sample bitmap). Opening them in the current version of the software on my Windows laptop (no GPU) takes 15 sec or more.
I believe the issue is the call to
image_pil.save(f, format=format)
inlabel_file.py
. The current code converts the .bmp to PNG, which appears to take a long time. If we just did the save to the same format (.bmp saves to BMP), performance is decent. See below for a possible solution.Beta Was this translation helpful? Give feedback.
All reactions