mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 23:38:48 +02:00
[Nodes] Add options for image compression in imageProcessing and PanoramaPostProcessing.
This commit is contained in:
parent
45ae444ced
commit
bc14c0bcea
2 changed files with 38 additions and 0 deletions
|
@ -521,6 +521,26 @@ Convert or apply filtering to the input images.
|
|||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
|
||||
desc.ChoiceParam(
|
||||
name='compressionMethod',
|
||||
label='Compression Method',
|
||||
description='Compression method for output image.',
|
||||
value='Auto',
|
||||
values=['None', 'Auto', 'RLE', 'ZIP', 'ZIPS', 'PIZ', 'PXR24', 'B44', 'B44A', 'DWAA', 'DWAB'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
|
||||
desc.IntParam(
|
||||
name='compressionLevel',
|
||||
label='Compression Level',
|
||||
description='Level of compression relying on the selected compression method.',
|
||||
value=0,
|
||||
range=(0, 200, 1),
|
||||
uid=[0],
|
||||
),
|
||||
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue