mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-29 22:47:17 +02:00
[nodes] DistortionCalibration: add cameraModel input attribute
This commit is contained in:
parent
b6d15b911f
commit
861a1c9f27
1 changed files with 13 additions and 4 deletions
|
@ -16,16 +16,25 @@ Calibration of a camera/lens couple distortion using a full screen checkerboard.
|
|||
desc.File(
|
||||
name='input',
|
||||
label='SfmData',
|
||||
description='SfmData File',
|
||||
description='SfmData File.',
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name='checkerboards',
|
||||
label='Checkerboards folder',
|
||||
description='Folder containing checkerboard JSON files',
|
||||
description='Folder containing checkerboard JSON files.',
|
||||
value='',
|
||||
uid=[0]
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='cameraModel',
|
||||
label='Camera Model',
|
||||
description='Camera model used to estimate distortion.',
|
||||
value='3deanamorphic4',
|
||||
values=['3deanamorphic4'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
]
|
||||
|
||||
|
@ -33,7 +42,7 @@ Calibration of a camera/lens couple distortion using a full screen checkerboard.
|
|||
desc.File(
|
||||
name='outSfMData',
|
||||
label='SfmData File',
|
||||
description='Path to the output 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