mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 10:52:03 +02:00
[nodes] PrepareDenseScene
Add options
This commit is contained in:
parent
490ebfe630
commit
88f4f068ec
1 changed files with 23 additions and 0 deletions
|
@ -17,6 +17,29 @@ class PrepareDenseScene(desc.CommandLineNode):
|
|||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='outputFileType',
|
||||
label='Output File Type',
|
||||
description='Output file type for the undistorted images.',
|
||||
value='exr',
|
||||
values=['jpg', 'png', 'tif', 'exr'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='saveMetadata',
|
||||
label='Save Metadata',
|
||||
description='Save projections and intrinsics informations in images metadata (only for .exr images).',
|
||||
value=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='saveMatricesTxtFiles',
|
||||
label='Save Matrices Text Files',
|
||||
description='Save projections and intrinsics informations in text files.',
|
||||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue