Skip to content

Commit

Permalink
Merge pull request #1756 from andrewharvey/patch-1
Browse files Browse the repository at this point in the history
Fix PoissonRecon failed with n threads log message
  • Loading branch information
pierotofy committed Apr 18, 2024
2 parents 6084d1d + a0fbd71 commit 424d9e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opendm/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def screened_poisson_reconstruction(inPointCloud, outMesh, depth = 8, samples =
if threads < 1:
break
else:
log.ODM_WARNING("PoissonRecon failed with %s threads, let's retry with %s..." % (threads, threads // 2))
log.ODM_WARNING("PoissonRecon failed with %s threads, let's retry with %s..." % (threads * 2, threads))


# Cleanup and reduce vertex count if necessary
Expand Down

0 comments on commit 424d9e2

Please sign in to comment.