From cf61ffa20515c58f8ef63cb8a4a285a891f6858c Mon Sep 17 00:00:00 2001 From: demoulinv Date: Wed, 18 Jan 2023 12:01:52 +0100 Subject: [PATCH] [HDR Calibration node] Bypass management --- meshroom/nodes/aliceVision/LdrToHdrCalibration.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meshroom/nodes/aliceVision/LdrToHdrCalibration.py b/meshroom/nodes/aliceVision/LdrToHdrCalibration.py index 135ed05844..6e6921f303 100644 --- a/meshroom/nodes/aliceVision/LdrToHdrCalibration.py +++ b/meshroom/nodes/aliceVision/LdrToHdrCalibration.py @@ -72,7 +72,6 @@ class LdrToHdrCalibration(desc.AVCommandLineNode): description="Bypass HDR creation and use the medium bracket as the source for the next steps", value=False, uid=[0], - group='internal', enabled= lambda node: node.nbBrackets.value != 1, ), desc.ChoiceParam( @@ -158,7 +157,7 @@ class LdrToHdrCalibration(desc.AVCommandLineNode): ] def processChunk(self, chunk): - if chunk.node.nbBrackets.value == 1 or chunk.node.byPass.value: + if chunk.node.nbBrackets.value == 1: return super(LdrToHdrCalibration, self).processChunk(chunk)