mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 23:38:48 +02:00
[node] CameraInit: clean param description
This commit is contained in:
parent
40974149ee
commit
6c8a2d06a1
1 changed files with 7 additions and 2 deletions
|
@ -15,7 +15,8 @@ class CameraInit(desc.CommandLineNode):
|
||||||
)
|
)
|
||||||
jsonFile = desc.File(
|
jsonFile = desc.File(
|
||||||
label='Json File',
|
label='Json File',
|
||||||
description='''Input file with all the user options. It can be used to provide a list of images instead of a directory.''',
|
description='''Input file with all the user options. '''
|
||||||
|
'''It can be used to provide a list of images instead of a directory.''',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
isOutput=False,
|
isOutput=False,
|
||||||
|
@ -72,7 +73,11 @@ class CameraInit(desc.CommandLineNode):
|
||||||
)
|
)
|
||||||
groupCameraModel = desc.ChoiceParam(
|
groupCameraModel = desc.ChoiceParam(
|
||||||
label='Group Camera Model',
|
label='Group Camera Model',
|
||||||
description='''* 0: each view have its own camera intrinsic parameters * 1: view share camera intrinsic parameters based on metadata, if no metadata each view has its own camera intrinsic parameters * 2: view share camera intrinsic parameters based on metadata, if no metadata they are grouped by folder Log parameters:''',
|
description='''* 0: each view have its own camera intrinsic parameters '''
|
||||||
|
'''* 1: view share camera intrinsic parameters based on metadata, '''
|
||||||
|
'''if no metadata each view has its own camera intrinsic parameters '''
|
||||||
|
'''* 2: view share camera intrinsic parameters based on metadata, '''
|
||||||
|
'''if no metadata they are grouped by folder''',
|
||||||
value=1,
|
value=1,
|
||||||
values=[0, 1, 2],
|
values=[0, 1, 2],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue