Slightly buffer image dimensions to allow for graceful fallback to CPU from GPU pathway.
pull/1404/head
Saijin-Naib 2022-01-14 07:01:10 -05:00 zatwierdzone przez GitHub
rodzic 2c5ec51588
commit eefd08b073
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -11,7 +11,7 @@ def gpu_disabled_by_user():
def has_popsift_and_can_handle_texsize(width, height):
try:
from opensfm import pypopsift
fits = pypopsift.fits_texture(width, height)
fits = pypopsift.fits_texture(int(width * 1.025), int(height * 1.025))
if not fits:
log.ODM_WARNING("Image size (%sx%spx) would not fit in GPU memory, falling back to CPU" % (width, height))
return fits