mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-30 01:16:33 +02:00
[nodes] Meshing
change output outputDenseReconstruction
to outputDensePointCloud
This commit is contained in:
parent
35163f0a69
commit
8a702b9866
1 changed files with 10 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
|||
__version__ = "2.0"
|
||||
__version__ = "3.0"
|
||||
|
||||
from meshroom.core import desc
|
||||
|
||||
|
@ -231,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