Lidar nodes

This commit is contained in:
Fabien Servant 2024-04-05 17:42:06 +02:00
parent 7d8b7cbef5
commit f1dcaf442b
3 changed files with 110 additions and 3 deletions

View file

@ -0,0 +1,44 @@
__version__ = "1.0"
from meshroom.core import desc
from meshroom.core.utils import VERBOSE_LEVEL
class LidarMerging(desc.AVCommandLineNode):
commandLine = 'aliceVision_lidarMerging {allParams}'
cpu = desc.Level.INTENSIVE
ram = desc.Level.INTENSIVE
category = 'Dense Reconstruction'
documentation = '''
This node merge meshes into one
'''
inputs = [
desc.File(
name="input",
label="Input JSON",
description="Input JSON file with description of inputs.",
value="",
uid=[0],
),
desc.ChoiceParam(
name="verboseLevel",
label="Verbose Level",
description="Verbosity level (fatal, error, warning, info, debug, trace).",
values=VERBOSE_LEVEL,
value="info",
exclusive=True,
uid=[],
),
]
outputs = [
desc.File(
name="output",
label="Mesh path output",
description="Output directory for mesh",
value=desc.Node.internalFolder + "output.obj",
uid=[],
)
]