[nodes] LdrToHdrSampling: expose new advanced params

This commit is contained in:
Fabien Castan 2020-07-06 11:43:28 +02:00
parent 396c285c76
commit 2ec218c086

View file

@ -92,6 +92,33 @@ class LdrToHdrSampling(desc.CommandLineNode):
uid=[0],
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(
name='verboseLevel',
label='Verbose Level',