mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-11 07:11:52 +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='',
|
||||
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(
|
||||
name='exportUndistortedImages',
|
||||
label='Export Undistorted Images',
|
||||
description='Export Undistorted Images.',
|
||||
value=True,
|
||||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
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'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
enabled= lambda node: node.exportUndistortedImages.value == 1,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue