mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 15:28:35 +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(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
label='SfmData',
|
label='SfmData',
|
||||||
description='SfmData File',
|
description='SfmData File.',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='checkerboards',
|
name='checkerboards',
|
||||||
label='Checkerboards folder',
|
label='Checkerboards folder',
|
||||||
description='Folder containing checkerboard JSON files',
|
description='Folder containing checkerboard JSON files.',
|
||||||
value='',
|
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(
|
desc.File(
|
||||||
name='outSfMData',
|
name='outSfMData',
|
||||||
label='SfmData File',
|
label='SfmData File',
|
||||||
description='Path to the output sfmData file',
|
description='Path to the output sfmData file.',
|
||||||
value=desc.Node.internalFolder + 'sfmData.sfm',
|
value=desc.Node.internalFolder + 'sfmData.sfm',
|
||||||
uid=[],
|
uid=[],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue