mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 07:18:25 +02:00
Lidar nodes
This commit is contained in:
parent
7d8b7cbef5
commit
f1dcaf442b
3 changed files with 110 additions and 3 deletions
44
meshroom/nodes/aliceVision/LidarMerging.py
Normal file
44
meshroom/nodes/aliceVision/LidarMerging.py
Normal 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=[],
|
||||
)
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue