mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-10 06:41:54 +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='',
|
value='',
|
||||||
uid=[0],
|
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(
|
desc.ChoiceParam(
|
||||||
name='verboseLevel',
|
name='verboseLevel',
|
||||||
label='Verbose Level',
|
label='Verbose Level',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue