mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-20 20:46:28 +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
|
@ -65,7 +65,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
label="SfMData",
|
||||
description="Input SfMData file.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name="userNbBrackets",
|
||||
|
@ -86,7 +85,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
"is 0, else it is equal to 'userNbBrackets'.",
|
||||
value=0,
|
||||
range=(0, 15, 1),
|
||||
invalidate=True,
|
||||
group="bracketsParams",
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -94,7 +92,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
label="Bypass",
|
||||
description="Bypass HDR creation and use the medium bracket as the source for the next steps.",
|
||||
value=False,
|
||||
invalidate=True,
|
||||
enabled=lambda node: node.nbBrackets.value != 1,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -109,7 +106,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
values=["auto", "linear", "debevec", "grossberg", "laguerre"],
|
||||
value="auto",
|
||||
exclusive=True,
|
||||
invalidate=True,
|
||||
enabled=lambda node: node.byPass.enabled and not node.byPass.value,
|
||||
),
|
||||
desc.IntParam(
|
||||
|
@ -118,7 +114,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
description="Quantization level like 8 bits or 10 bits.",
|
||||
value=10,
|
||||
range=(8, 14, 1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
enabled=lambda node: node.byPass.enabled and not node.byPass.value,
|
||||
),
|
||||
|
@ -130,7 +125,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
values=COLORSPACES,
|
||||
value="AUTO",
|
||||
exclusive=True,
|
||||
invalidate=True,
|
||||
enabled=lambda node: node.byPass.enabled and not node.byPass.value,
|
||||
),
|
||||
desc.IntParam(
|
||||
|
@ -139,7 +133,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
description="Size of the image tile to extract a sample.",
|
||||
value=256,
|
||||
range=(8, 1024, 1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
enabled=lambda node: node.byPass.enabled and not node.byPass.value,
|
||||
),
|
||||
|
@ -149,7 +142,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
description="Radius of the patch used to analyze the sample statistics.",
|
||||
value=5,
|
||||
range=(0, 10, 1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
enabled=lambda node: node.byPass.enabled and not node.byPass.value,
|
||||
),
|
||||
|
@ -159,7 +151,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
description="Maximum number of samples per image group.",
|
||||
value=200,
|
||||
range=(10, 1000, 10),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
enabled=lambda node: node.byPass.enabled and not node.byPass.value,
|
||||
),
|
||||
|
@ -178,7 +169,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
values=VERBOSE_LEVEL,
|
||||
value="info",
|
||||
exclusive=True,
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
||||
|
@ -188,7 +178,6 @@ Sample pixels from Low range images for HDR creation.
|
|||
label="Folder",
|
||||
description="Output path for the samples.",
|
||||
value=desc.Node.internalFolder,
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue