mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[nodes] ColorCheckerDetection: add max charts count input and update io
This commit is contained in:
parent
899da9eaf3
commit
8f5472af71
1 changed files with 11 additions and 2 deletions
|
@ -23,11 +23,20 @@ Perform Macbeth color checker chart detection.
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
desc.IntParam(
|
||||||
|
name='maxCount',
|
||||||
|
label='Max count by image',
|
||||||
|
description='Max color charts count to detect in a single image',
|
||||||
|
value=1,
|
||||||
|
range=(1, 3, 1),
|
||||||
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='debug',
|
name='debug',
|
||||||
label='Debug',
|
label='Debug',
|
||||||
description='If checked, debug data will be generated',
|
description='If checked, debug data will be generated',
|
||||||
value=True,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -37,7 +46,7 @@ Perform Macbeth color checker chart detection.
|
||||||
name='outputData',
|
name='outputData',
|
||||||
label='Color checker data',
|
label='Color checker data',
|
||||||
description='Output position and colorimetric data extracted from detected color checkers in the images',
|
description='Output position and colorimetric data extracted from detected color checkers in the images',
|
||||||
value=desc.Node.internalFolder + '/colorData',
|
value=desc.Node.internalFolder + '/ccheckers.json',
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue