mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-04 01:08:26 +02:00
Merge pull request #382 from alicevision/dev_densePointCloud
Dense point cloud
This commit is contained in:
commit
9b2338488b
5 changed files with 63 additions and 28 deletions
|
@ -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="",
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue