mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-03 11:21:52 +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
|
from meshroom.core import desc
|
||||||
|
|
||||||
|
@ -231,17 +231,16 @@ class Meshing(desc.CommandLineNode):
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name="output",
|
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).",
|
description="Output mesh (OBJ file format).",
|
||||||
value="{cache}/{nodeType}/{uid0}/mesh.obj",
|
value="{cache}/{nodeType}/{uid0}/mesh.obj",
|
||||||
uid=[],
|
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