[nodes] Clean-up: Harmonize nodes' descriptions

This commit is contained in:
Candice Bentéjac 2023-10-17 15:43:34 +02:00
parent e463f0dce2
commit f2d6770651
25 changed files with 173 additions and 173 deletions

View file

@ -9,25 +9,25 @@ class SfMSplitReconstructed(desc.AVCommandLineNode):
category = 'Utils'
documentation = '''
This nodes takes a sfmData file and split it in two
- One sfmData with the reconstructed views
- One sfmData with the non reconstructed views
This nodes takes a SfMData file as an input and splits it in two output SfMData files:
- One SfMData containing the reconstructed views
- One SfMData containing the non-reconstructed views
'''
inputs = [
desc.File(
name='input',
label='Input',
description='''SfMData file .''',
value='',
name="input",
label="Input SfMData",
description="Input SfMData file.",
value="",
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'],
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=[],
),
@ -35,17 +35,17 @@ class SfMSplitReconstructed(desc.AVCommandLineNode):
outputs = [
desc.File(
name='reconstructedOutput',
label='Reconstructed SfMData File',
description='SfMData file with reconstructed cameras',
value=desc.Node.internalFolder + 'sfmReconstructed.abc',
name="reconstructedOutput",
label="Reconstructed SfMData File",
description="SfMData file containing the reconstructed cameras.",
value=desc.Node.internalFolder + "sfmReconstructed.abc",
uid=[],
),
desc.File(
name='notReconstructedOutput',
label='Not Reconstructed SfMData File',
description='SfMData file with non reconstructed cameras',
value=desc.Node.internalFolder + 'sfmNonReconstructed.abc',
name="notReconstructedOutput",
label="Not Reconstructed SfMData File",
description="SfMData file containing the non-reconstructed cameras.",
value=desc.Node.internalFolder + "sfmNonReconstructed.abc",
uid=[],
)
]