mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-12 15:52:07 +02:00
[nodes] ExportAnimatedCamera: export undistort UV maps
This commit is contained in:
parent
340ab2ec51
commit
743fdce1a4
1 changed files with 9 additions and 1 deletions
|
@ -27,11 +27,18 @@ Based on the input image filenames, it will recognize the input video sequence t
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
desc.BoolParam(
|
||||||
|
name='exportUVMaps',
|
||||||
|
label='Export UV Maps',
|
||||||
|
description='Export UV Maps, absolutes values (x,y) of distortion are encoding in UV channels.',
|
||||||
|
value=True,
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='exportUndistortedImages',
|
name='exportUndistortedImages',
|
||||||
label='Export Undistorted Images',
|
label='Export Undistorted Images',
|
||||||
description='Export Undistorted Images.',
|
description='Export Undistorted Images.',
|
||||||
value=True,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
|
@ -42,6 +49,7 @@ Based on the input image filenames, it will recognize the input video sequence t
|
||||||
values=['jpg', 'png', 'tif', 'exr'],
|
values=['jpg', 'png', 'tif', 'exr'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
enabled= lambda node: node.exportUndistortedImages.value == 1,
|
||||||
),
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='verboseLevel',
|
name='verboseLevel',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue