mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-28 16:36:32 +02:00
[nodes] Use utilitary constants for most common ChoiceParams
This commit is contained in:
parent
b8d14fe6be
commit
0f6ad22d11
73 changed files with 195 additions and 109 deletions
|
@ -1,6 +1,7 @@
|
|||
__version__ = "1.0"
|
||||
|
||||
from meshroom.core import desc
|
||||
from meshroom.core.utils import VERBOSE_LEVEL
|
||||
|
||||
|
||||
class CheckerboardDetection(desc.AVCommandLineNode):
|
||||
|
@ -44,6 +45,15 @@ The detection method also supports nested calibration grids.
|
|||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="verboseLevel",
|
||||
label="Verbose Level",
|
||||
description="Verbosity level (fatal, error, warning, info, debug, trace).",
|
||||
values=VERBOSE_LEVEL,
|
||||
value="info",
|
||||
exclusive=True,
|
||||
uid=[],
|
||||
),
|
||||
]
|
||||
|
||||
outputs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue