Merge pull request #382 from alicevision/dev_densePointCloud

Dense point cloud
This commit is contained in:
Fabien Castan 2019-02-28 16:10:46 +01:00 committed by GitHub
commit 9b2338488b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 63 additions and 28 deletions

View file

@ -1,4 +1,4 @@
__version__ = "2.0"
__version__ = "3.0"
from meshroom.core import desc
@ -209,6 +209,14 @@ class Meshing(desc.CommandLineNode):
uid=[0],
advanced=True,
),
desc.BoolParam(
name='saveRawDensePointCloud',
label='Save Raw Dense Point Cloud',
description='Save dense point cloud before cut and filtering.',
value=False,
uid=[],
advanced=True,
),
desc.ChoiceParam(
name='verboseLevel',
label='Verbose Level',
@ -223,17 +231,16 @@ class Meshing(desc.CommandLineNode):
outputs = [
desc.File(
name="output",
label="Output mesh",
label="Output Dense Point Cloud",
description="Output dense point cloud with visibilities (SfMData file format).",
value="{cache}/{nodeType}/{uid0}/densePointCloud.abc",
uid=[],
),
desc.File(
name="outputMesh",
label="Output Mesh",
description="Output mesh (OBJ file format).",
value="{cache}/{nodeType}/{uid0}/mesh.obj",
uid=[],
),
desc.File(
name="outputDenseReconstruction",
label="Output reconstruction",
description="Output dense reconstruction (BIN file format).",
value="{cache}/{nodeType}/{uid0}/denseReconstruction.bin",
uid=[],
group="",
),
),
]