77
88class 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