mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
[nodes] FeatureExtraction: add maskExtension and maskInvert params
This commit is contained in:
parent
d4d5169d15
commit
161c7ba25d
1 changed files with 17 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
__version__ = "1.2"
|
||||
__version__ = "1.3"
|
||||
|
||||
from meshroom.core import desc
|
||||
|
||||
|
@ -45,6 +45,22 @@ It is robust to motion-blur, depth-of-field, occlusion. Be careful to have enoug
|
|||
value="",
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="maskExtension",
|
||||
label="Mask Extension",
|
||||
description="File extension for masks.",
|
||||
value="png",
|
||||
values=["png", "exr", "jpg"],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name="maskInvert",
|
||||
label="Invert Masks",
|
||||
description="Invert mask values.",
|
||||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="describerTypes",
|
||||
label="Describer Types",
|
||||
|
|
Loading…
Add table
Reference in a new issue