pull/1318/head
Piero Toffanin 2021-07-30 16:16:05 -04:00
rodzic 92d868e33e
commit d2b2f6ba6a
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -457,8 +457,6 @@ class OSFMContext:
def ground_control_points(self, proj4):
"""
Load ground control point information.
Make sure this function is called *after* update_reference_lla()
has been called.
"""
ds = DataSet(self.opensfm_project_path)
gcps = ds.load_ground_control_points()

Wyświetl plik

@ -22,6 +22,8 @@ class ODMPostProcess(types.ODM_Stage):
if reconstruction.has_gcp() and io.file_exists(gcp_gml_export_file):
skip_embed_gcp = False
gcp_xml = ""
with open(gcp_gml_export_file) as f:
gcp_xml = f.read()