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
In resolve_conflicts.py we load the entire orthomosaic into memory just so that we can get its dimensions. This is probably very memory inefficient.
There are a couple of potential solutions:
Save the image dimensions in the segments file during the segmentation step, so that resolve_conflicts.py can just load it from there
Use a python library that can get the image dimensions without loading the file into memory (unlike PIL)
The text was updated successfully, but these errors were encountered:
In
resolve_conflicts.py
we load the entire orthomosaic into memory just so that we can get its dimensions. This is probably very memory inefficient.There are a couple of potential solutions:
resolve_conflicts.py
can just load it from thereThe text was updated successfully, but these errors were encountered: