mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-05 04:12:15 +02:00
[nodes] LdrToHdrSampling: expose new advanced params
This commit is contained in:
parent
396c285c76
commit
2ec218c086
1 changed files with 27 additions and 0 deletions
|
@ -92,6 +92,33 @@ class LdrToHdrSampling(desc.CommandLineNode):
|
||||||
uid=[0],
|
uid=[0],
|
||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
|
desc.IntParam(
|
||||||
|
name='blockSize',
|
||||||
|
label='Block Size',
|
||||||
|
description='Size of the image tile to extract a sample.',
|
||||||
|
value=256,
|
||||||
|
range=(8, 1024, 1),
|
||||||
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
|
desc.IntParam(
|
||||||
|
name='radius',
|
||||||
|
label='Patch Radius',
|
||||||
|
description='Radius of the patch used to analyze the sample statistics.',
|
||||||
|
value=5,
|
||||||
|
range=(0, 10, 1),
|
||||||
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
|
desc.IntParam(
|
||||||
|
name='maxCountSample',
|
||||||
|
label='Max Number of Samples',
|
||||||
|
description='Max number of samples per image group.',
|
||||||
|
value=200,
|
||||||
|
range=(10, 1000, 10),
|
||||||
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='verboseLevel',
|
name='verboseLevel',
|
||||||
label='Verbose Level',
|
label='Verbose Level',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue