diff --git a/meshroom/nodes/aliceVision/ColorCheckerCorrection.py b/meshroom/nodes/aliceVision/ColorCheckerCorrection.py index 62697d820b..b68f44d911 100644 --- a/meshroom/nodes/aliceVision/ColorCheckerCorrection.py +++ b/meshroom/nodes/aliceVision/ColorCheckerCorrection.py @@ -37,11 +37,16 @@ class ColorCheckerCorrection(desc.AVCommandLineNode): value="", uid=[0], ), - desc.BoolParam( - name="luminanceOnly", - label="Luminance Correction Only", - description="Only correct the luminance level.", - value=True, + desc.ChoiceParam( + name="correctionMethod", + label="Correction Level", + description="Level of correction:\n" + " - luminance: Ajust luminance level only.\n" + " - whiteBalance: Apply white balancing in addition to luminance adjustment.\n" + " - full: Full color correction.", + value="luminance", + values=["luminance", "whiteBalance", "full"], + exclusive=True, uid=[0], ), desc.BoolParam(