mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-29 17:06:35 +02:00
[nodes] MVS: support multiple image file formats
This commit is contained in:
parent
c26bb5be7a
commit
8d0d69f438
2 changed files with 18 additions and 0 deletions
|
@ -24,6 +24,15 @@ class PrepareDenseScene(desc.CommandLineNode):
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
desc.ChoiceParam(
|
||||||
|
name='outputFileType',
|
||||||
|
label='Image File Type',
|
||||||
|
description='Output Image File Type',
|
||||||
|
value='exr',
|
||||||
|
values=['jpg', 'png', 'tif', 'exr'],
|
||||||
|
exclusive=True,
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='verboseLevel',
|
name='verboseLevel',
|
||||||
label='Verbose Level',
|
label='Verbose Level',
|
||||||
|
|
|
@ -55,6 +55,15 @@ class Texturing(desc.CommandLineNode):
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
desc.ChoiceParam(
|
||||||
|
name='outputTextureFileType',
|
||||||
|
label='Texture File Type',
|
||||||
|
description='Texture File Type',
|
||||||
|
value='png',
|
||||||
|
values=('jpg', 'png', 'tiff', 'exr'),
|
||||||
|
exclusive=True,
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='flipNormals',
|
name='flipNormals',
|
||||||
label='Flip Normals',
|
label='Flip Normals',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue