mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-28 05:57:38 +02:00
[nodes] ConvertDistortion: update labels and version
This commit is contained in:
parent
7a214ecdc9
commit
a9138fa45f
1 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
__version__ = "2.0"
|
__version__ = "1.0"
|
||||||
|
|
||||||
from meshroom.core import desc
|
from meshroom.core import desc
|
||||||
from meshroom.core.utils import VERBOSE_LEVEL
|
from meshroom.core.utils import VERBOSE_LEVEL
|
||||||
|
@ -10,7 +10,7 @@ class ConvertDistortion(desc.AVCommandLineNode):
|
||||||
|
|
||||||
category = 'Utils'
|
category = 'Utils'
|
||||||
documentation = '''
|
documentation = '''
|
||||||
Convert distortions between different models
|
Convert distortions between different models.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
inputs = [
|
inputs = [
|
||||||
|
@ -23,8 +23,8 @@ class ConvertDistortion(desc.AVCommandLineNode):
|
||||||
),
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name="from",
|
name="from",
|
||||||
label="from",
|
label="From",
|
||||||
description="Distortion model to convert from",
|
description="Distortion model to convert from.",
|
||||||
value="distortion",
|
value="distortion",
|
||||||
values=["distortion", "undistortion"],
|
values=["distortion", "undistortion"],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
|
@ -32,8 +32,8 @@ class ConvertDistortion(desc.AVCommandLineNode):
|
||||||
),
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name="to",
|
name="to",
|
||||||
label="to",
|
label="To",
|
||||||
description="Distortion model to convert to",
|
description="Distortion model to convert to.",
|
||||||
value="undistortion",
|
value="undistortion",
|
||||||
values=["distortion", "undistortion"],
|
values=["distortion", "undistortion"],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue