mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[nodes] SfmTransform: update parameters doc
This commit is contained in:
parent
cf5b835272
commit
a093673683
1 changed files with 8 additions and 2 deletions
|
@ -18,7 +18,11 @@ class SfMTransform(desc.CommandLineNode):
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='method',
|
name='method',
|
||||||
label='Transformation Method',
|
label='Transformation Method',
|
||||||
description='''Transformation method (transformation, auto_from_cameras, auto_from_landmarks).''',
|
description="Transformation method:\n"
|
||||||
|
" * transformation: Apply a given transformation\n"
|
||||||
|
" * auto_from_cameras: Use cameras\n"
|
||||||
|
" * auto_from_landmarks: Use landmarks\n"
|
||||||
|
" * from_single_camera: Use a specific camera as the origin of the coordinate system",
|
||||||
value='auto_from_landmarks',
|
value='auto_from_landmarks',
|
||||||
values=['transformation', 'auto_from_cameras', 'auto_from_landmarks', 'from_single_camera'],
|
values=['transformation', 'auto_from_cameras', 'auto_from_landmarks', 'from_single_camera'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
|
@ -27,7 +31,9 @@ class SfMTransform(desc.CommandLineNode):
|
||||||
desc.StringParam(
|
desc.StringParam(
|
||||||
name='transformation',
|
name='transformation',
|
||||||
label='Transformation',
|
label='Transformation',
|
||||||
description='''Align [X,Y,Z] to +Y-axis, rotate around Y by R deg, scale by S; syntax: X,Y,Z;R;S. (required only for 'transformation' method)''',
|
description="Required only for 'transformation' and 'from_single_camera' methods:\n"
|
||||||
|
" * transformation: Align [X,Y,Z] to +Y-axis, rotate around Y by R deg, scale by S; syntax: X,Y,Z;R;S\n"
|
||||||
|
" * from_single_camera: Camera UID or image filename",
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue