diff --git a/SuperBuild/cmake/External-OpenSfM.cmake b/SuperBuild/cmake/External-OpenSfM.cmake index 1b17b090..be03be63 100644 --- a/SuperBuild/cmake/External-OpenSfM.cmake +++ b/SuperBuild/cmake/External-OpenSfM.cmake @@ -9,7 +9,7 @@ ExternalProject_Add(${_proj_name} #--Download step-------------- DOWNLOAD_DIR ${SB_DOWNLOAD_DIR} GIT_REPOSITORY https://github.com/OpenDroneMap/OpenSfM/ - GIT_TAG 210 + GIT_TAG 211 #--Update/Patch step---------- UPDATE_COMMAND git submodule update --init --recursive #--Configure step------------- diff --git a/opendm/types.py b/opendm/types.py index c2271556..bf484b2d 100644 --- a/opendm/types.py +++ b/opendm/types.py @@ -1,6 +1,7 @@ import cv2 import re import os +import warnings from opendm import get_image_size from opendm import location from opendm.gcp import GCPFile @@ -16,6 +17,8 @@ from opendm import context from opendm.progress import progressbc from opendm.photo import ODM_Photo +# Ignore warnings about proj information being lost +warnings.filterwarnings("ignore") class ODM_Reconstruction(object): def __init__(self, photos):