diff --git a/meshroom/nodes/aliceVision/ExportAnimatedCamera.py b/meshroom/nodes/aliceVision/ExportAnimatedCamera.py index eefeb48900..3acaa8b9ad 100644 --- a/meshroom/nodes/aliceVision/ExportAnimatedCamera.py +++ b/meshroom/nodes/aliceVision/ExportAnimatedCamera.py @@ -26,11 +26,18 @@ class ExportAnimatedCamera(desc.CommandLineNode): 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( @@ -41,6 +48,7 @@ class ExportAnimatedCamera(desc.CommandLineNode): values=['jpg', 'png', 'tif', 'exr'], exclusive=True, uid=[0], + enabled= lambda node: node.exportUndistortedImages.value == 1, ), desc.ChoiceParam( name='verboseLevel',