Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color checker detection and correction update #2186

Draft
wants to merge 8 commits into
base: develop
Choose a base branch
from
Prev Previous commit
[Nodes] ColorCheckerDetection: Add color chart type option and add cn…
…n model folder setting.
  • Loading branch information
demoulinv committed Sep 27, 2023
commit d8362c1517fe72834cebe9e8ec2fd06b1375bfed
19 changes: 19 additions & 0 deletions meshroom/nodes/aliceVision/ColorCheckerDetection.py
Original file line number Diff line number Diff line change
@@ -35,6 +35,25 @@ class ColorCheckerDetection(desc.AVCommandLineNode):
value="",
uid=[0],
),
desc.ChoiceParam(
name="ccType",
label="Colorchart Type",
description="Colorchart type:\n"
" - mcc24 classical macbeth 24 patches\n"
" - sg140 Digital SG 140 patches\n"
" - Vinyl18 DKK colorchart 12 patches + 6 rectangles)",
value="mcc24",
values=["mcc24", "sg140", "Vinyl18"],
exclusive=True,
uid=[0],
),
desc.File(
name="modelFolder",
label="Model Folder",
description="DNN model directory path.",
value="${ALICEVISION_COLORCHARTDETECTION_MODEL_FOLDER}",
uid=[0],
),
desc.IntParam(
name="maxCount",
label="Max Count By Image",