mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 19:02:29 +02:00
Merge develop into dev/nodesAndTaskManager
This commit is contained in:
commit
991aca989b
28 changed files with 1570 additions and 452 deletions
|
@ -91,32 +91,6 @@ class Texturing(desc.CommandLineNode):
|
|||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='correctEV',
|
||||
label='Correct Exposure',
|
||||
description='Uniformize images exposure values.',
|
||||
value=False,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='useScore',
|
||||
label='Use Score',
|
||||
description='Use triangles scores for multiband blending.',
|
||||
value=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='processColorspace',
|
||||
label='Process Colorspace',
|
||||
description="Colorspace for the texturing internal computation (does not impact the output file colorspace).",
|
||||
value='sRGB',
|
||||
values=('sRGB', 'LAB', 'XYZ'),
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name='multiBandDownscale',
|
||||
label='Multi Band Downscale',
|
||||
|
@ -138,6 +112,14 @@ class Texturing(desc.CommandLineNode):
|
|||
description='''Number of contributions per frequency band for multiband blending (each frequency band also contributes to lower bands)''',
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='useScore',
|
||||
label='Use Score',
|
||||
description='Use triangles scores (ie. reprojection area) for multiband blending.',
|
||||
value=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
name='bestScoreThreshold',
|
||||
label='Best Score Threshold',
|
||||
|
@ -156,6 +138,23 @@ class Texturing(desc.CommandLineNode):
|
|||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='processColorspace',
|
||||
label='Process Colorspace',
|
||||
description="Colorspace for the texturing internal computation (does not impact the output file colorspace).",
|
||||
value='sRGB',
|
||||
values=('sRGB', 'LAB', 'XYZ'),
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='correctEV',
|
||||
label='Correct Exposure',
|
||||
description='Uniformize images exposure values.',
|
||||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='forceVisibleByAllVertices',
|
||||
label='Force Visible By All Vertices',
|
||||
|
@ -182,6 +181,15 @@ class Texturing(desc.CommandLineNode):
|
|||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
name='subdivisionTargetRatio',
|
||||
label='Subdivision Target Ratio',
|
||||
description='''Percentage of the density of the reconstruction as the target for the subdivision (0: disable subdivision, 0.5: half density of the reconstruction, 1: full density of the reconstruction).''',
|
||||
value=0.8,
|
||||
range=(0.0, 1.0, 0.001),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue