mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-30 14:58:37 +02:00
[nodes] D-G: Harmonize and improve labels and descriptions
Use CamelCase for all labels, always end descriptions with periods, and replace the mixed use of single and double quotes with double quotes only.
This commit is contained in:
parent
241bead35c
commit
5c2865968d
11 changed files with 971 additions and 935 deletions
|
@ -14,36 +14,45 @@ Calibration of a camera/lens couple distortion using a full screen checkerboard.
|
|||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='input',
|
||||
label='Input SfMData',
|
||||
description='SfMData file.',
|
||||
value='',
|
||||
name="input",
|
||||
label="Input SfMData",
|
||||
description="SfMData file.",
|
||||
value="",
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name='checkerboards',
|
||||
label='Checkerboards Folder',
|
||||
description='Folder containing checkerboard JSON files.',
|
||||
value='',
|
||||
name="checkerboards",
|
||||
label="Checkerboards Folder",
|
||||
description="Folder containing checkerboard JSON files.",
|
||||
value="",
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='cameraModel',
|
||||
label='Camera Model',
|
||||
description='Camera model used to estimate distortion.',
|
||||
value='3deanamorphic4',
|
||||
values=['3deanamorphic4'],
|
||||
name="cameraModel",
|
||||
label="Camera Model",
|
||||
description="Camera model used to estimate distortion.",
|
||||
value="3deanamorphic4",
|
||||
values=["3deanamorphic4"],
|
||||
exclusive=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='output',
|
||||
label='SfMData File',
|
||||
description='Path to the output SfMData file.',
|
||||
value=desc.Node.internalFolder + 'sfmData.sfm',
|
||||
name="output",
|
||||
label="SfMData File",
|
||||
description="Path to the output SfMData file.",
|
||||
value=desc.Node.internalFolder + "sfmData.sfm",
|
||||
uid=[],
|
||||
)
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue