Skip to content

Commit d8362c1

Browse files
committed
[Nodes] ColorCheckerDetection: Add color chart type option and add cnn model folder setting.
1 parent 75422c7 commit d8362c1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

meshroom/nodes/aliceVision/ColorCheckerDetection.py

+19
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,25 @@ class ColorCheckerDetection(desc.AVCommandLineNode):
3535
value="",
3636
uid=[0],
3737
),
38+
desc.ChoiceParam(
39+
name="ccType",
40+
label="Colorchart Type",
41+
description="Colorchart type:\n"
42+
" - mcc24 classical macbeth 24 patches\n"
43+
" - sg140 Digital SG 140 patches\n"
44+
" - Vinyl18 DKK colorchart 12 patches + 6 rectangles)",
45+
value="mcc24",
46+
values=["mcc24", "sg140", "Vinyl18"],
47+
exclusive=True,
48+
uid=[0],
49+
),
50+
desc.File(
51+
name="modelFolder",
52+
label="Model Folder",
53+
description="DNN model directory path.",
54+
value="${ALICEVISION_COLORCHARTDETECTION_MODEL_FOLDER}",
55+
uid=[0],
56+
),
3857
desc.IntParam(
3958
name="maxCount",
4059
label="Max Count By Image",

0 commit comments

Comments
 (0)