mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-17 11:06:27 +02:00
[nodes] StereoPhotometry: Update nodes' parameters and descriptions
This commit is contained in:
parent
578d1abbf4
commit
f0f5b205bf
4 changed files with 188 additions and 84 deletions
|
@ -1,4 +1,4 @@
|
|||
__version__ = "3.0"
|
||||
__version__ = "1.0"
|
||||
|
||||
from meshroom.core import desc
|
||||
|
||||
|
@ -10,28 +10,46 @@ TODO.
|
|||
'''
|
||||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='inputPath',
|
||||
label='Normal Maps Folder',
|
||||
description='Path to the folder containing the normal maps and the masks.',
|
||||
value='',
|
||||
uid=[0]
|
||||
),
|
||||
desc.File(
|
||||
name='sfmDataFile',
|
||||
label='sfmDataFile',
|
||||
description='''SfMData file.''',
|
||||
label='SfMData',
|
||||
description='Input SfMData file.',
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name='inputPath',
|
||||
label='inputPath',
|
||||
description='Normal maps folder',
|
||||
value='',
|
||||
desc.IntParam(
|
||||
name='downscale',
|
||||
label='Downscale Factor',
|
||||
description='Downscale factor for faster results.',
|
||||
value=1,
|
||||
range=(1, 10, 1),
|
||||
advanced=True,
|
||||
uid=[0]
|
||||
)
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
description='Verbosity level (fatal, error, warning, info, debug, trace).',
|
||||
value='info',
|
||||
values=['fatal', 'error', 'warning', 'info', 'debug', 'trace'],
|
||||
exclusive=True,
|
||||
uid=[]
|
||||
)
|
||||
]
|
||||
|
||||
outputs = [
|
||||
desc.File(
|
||||
name='outputPath',
|
||||
label='Output path',
|
||||
description='Path to the output folder',
|
||||
label='Output Path',
|
||||
description='Path to the output folder.',
|
||||
value=desc.Node.internalFolder,
|
||||
uid=[],
|
||||
uid=[]
|
||||
)
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue