mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 09:56:32 +02:00
[nodes] Remove invalidate=True
from descriptions
This commit is contained in:
parent
07b65499ce
commit
41a1b47c43
81 changed files with 8 additions and 1076 deletions
|
@ -17,14 +17,12 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
label="Input SfMData",
|
||||
description="Input SfMData file.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
desc.File(
|
||||
name="depthMapsFilterFolder",
|
||||
label="Filtered Depth Maps Folder",
|
||||
description="Input filtered depth maps folder.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
desc.File(
|
||||
name="imagesFolder",
|
||||
|
@ -32,7 +30,6 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
description="Use images from a specific folder instead of those specify in the SfMData file.\n"
|
||||
"Filename should be the image UID.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="lightingEstimationMode",
|
||||
|
@ -41,7 +38,6 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
value="global",
|
||||
values=["global", "per_image"],
|
||||
exclusive=True,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -51,7 +47,6 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
value="RGB",
|
||||
values=["RGB", "Luminance"],
|
||||
exclusive=True,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -61,7 +56,6 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
value="constant",
|
||||
values=["constant", "picture", "median_filter", "blur_filter"],
|
||||
exclusive=True,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
|
@ -70,7 +64,6 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
description="Albedo filter size for estimation method using filter.",
|
||||
value=3,
|
||||
range=(0, 100, 1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -80,7 +73,6 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
values=VERBOSE_LEVEL,
|
||||
value="info",
|
||||
exclusive=True,
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
||||
|
@ -90,6 +82,5 @@ class LightingEstimation(desc.AVCommandLineNode):
|
|||
label="Folder",
|
||||
description="Folder for output lighting vector files.",
|
||||
value=desc.Node.internalFolder,
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue