pull/1276/head
Piero Toffanin 2021-04-28 14:04:55 -04:00
rodzic 139aa44b0f
commit 5e98c8bbc1
3 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -20,7 +20,7 @@ ExternalProject_Add(${_proj_name}
#--Download step-------------- #--Download step--------------
DOWNLOAD_DIR ${SB_DOWNLOAD_DIR} DOWNLOAD_DIR ${SB_DOWNLOAD_DIR}
GIT_REPOSITORY https://github.com/OpenDroneMap/openMVS GIT_REPOSITORY https://github.com/OpenDroneMap/openMVS
GIT_TAG 2411 GIT_TAG 2412
#--Update/Patch step---------- #--Update/Patch step----------
UPDATE_COMMAND "" UPDATE_COMMAND ""
#--Configure step------------- #--Configure step-------------

Wyświetl plik

@ -1 +1 @@
2.4.11 2.4.12

Wyświetl plik

@ -124,7 +124,7 @@ def dem_to_mesh_gridded(inGeotiff, outMesh, maxVertexCount, verbose=False, maxCo
'verbose': '-verbose' if verbose else '' 'verbose': '-verbose' if verbose else ''
} }
system.run('{reconstructmesh} --mesh-file "{infile}" ' system.run('{reconstructmesh} -i "{infile}" '
'-o "{outfile}" ' '-o "{outfile}" '
'--remove-spikes 0 --remove-spurious 0 --smooth 0 ' '--remove-spikes 0 --remove-spurious 0 --smooth 0 '
'--target-face-num {max_faces} ' '--target-face-num {max_faces} '
@ -178,7 +178,7 @@ def screened_poisson_reconstruction(inPointCloud, outMesh, depth = 8, samples =
'verbose': '-verbose' if verbose else '' 'verbose': '-verbose' if verbose else ''
} }
system.run('{reconstructmesh} --mesh-file "{infile}" ' system.run('{reconstructmesh} -i "{infile}" '
'-o "{outfile}" ' '-o "{outfile}" '
'--remove-spikes 0 --remove-spurious 0 --smooth 0 ' '--remove-spikes 0 --remove-spurious 0 --smooth 0 '
'--target-face-num {max_faces} ' '--target-face-num {max_faces} '