Skip to content

Commit c0c988c

Browse files
committed
[nodes] SfMPoseInjecting: Update doc, labels and descriptions
1 parent 670d949 commit c0c988c

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

meshroom/nodes/aliceVision/SfMPoseInjecting.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
class SfMPoseInjecting(desc.AVCommandLineNode):
99

10-
commandLine = 'aliceVision_sfmPoseInjecting {allParams}'
11-
size = desc.DynamicNodeSize('input')
10+
commandLine = "aliceVision_sfmPoseInjecting {allParams}"
11+
size = desc.DynamicNodeSize("input")
1212

1313
category = "Utils"
1414
documentation = """
15-
Use a json file to inject poses inside sfmData
16-
"""
15+
Use a JSON file to inject poses inside the SfMData.
16+
"""
1717

1818
inputs = [
1919
desc.File(
@@ -24,15 +24,15 @@ class SfMPoseInjecting(desc.AVCommandLineNode):
2424
),
2525
desc.File(
2626
name="posesFilename",
27-
label="Json file",
28-
description="Input poses file.",
27+
label="Poses",
28+
description="Input JSON file containing the poses.",
2929
value="",
3030
),
3131
desc.ChoiceParam(
3232
name="rotationFormat",
33-
label="Rotation format",
34-
description="Defines the rotation format for the input poses"
35-
" - EulerZXY : Euler rotation in degrees (Y*X*Z)",
33+
label="Rotation Format",
34+
description="Defines the rotation format for the input poses:\n"
35+
" - EulerZXY: Euler rotation in degrees (Y*X*Z)",
3636
values=["EulerZXY"],
3737
value="EulerZXY",
3838
),
@@ -42,14 +42,14 @@ class SfMPoseInjecting(desc.AVCommandLineNode):
4242
description="Verbosity level (fatal, error, warning, info, debug, trace).",
4343
values=VERBOSE_LEVEL,
4444
value="info",
45-
)
45+
),
4646
]
4747

4848
outputs = [
4949
desc.File(
5050
name="output",
51-
label="SfM File",
51+
label="SfMData",
5252
description="Path to the output SfM file.",
5353
value=desc.Node.internalFolder + "sfmData.sfm",
54-
)
54+
),
5555
]

0 commit comments

Comments
 (0)