From 6fb7a267916fd92beda3fed1beaf7808da27fc02 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Fri, 3 Dec 2021 12:19:19 -0500 Subject: [PATCH] Fix: do not set maxMemory --- opendm/mesh.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/opendm/mesh.py b/opendm/mesh.py index 4d0eda99a..332c93a14 100644 --- a/opendm/mesh.py +++ b/opendm/mesh.py @@ -163,7 +163,6 @@ def screened_poisson_reconstruction(inPointCloud, outMesh, depth = 8, samples = 'samples': samples, 'pointWeight': pointWeight, 'threads': int(threads), - 'memory': int(concurrency.get_max_memory_mb(4, 0.8) // 1024), 'verbose': '--verbose' if verbose else '' } @@ -175,7 +174,6 @@ def screened_poisson_reconstruction(inPointCloud, outMesh, depth = 8, samples = '--pointWeight {pointWeight} ' '--samplesPerNode {samples} ' '--threads {threads} ' - '--maxMemory {memory} ' '--bType 2 ' '--linearFit ' '{verbose}'.format(**poissonReconArgs))