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

Noise reduction in HDR merging #2072

Merged
merged 3 commits into from
Jul 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions meshroom/nodes/aliceVision/LdrToHdrMerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,32 @@ class LdrToHdrMerge(desc.AVCommandLineNode):
uid=[0],
enabled= lambda node: (node.nbBrackets.value != 1 and not node.offsetRefBracketIndexEnabled.value),
),
desc.FloatParam(
name='minSignificantValue',
label='Minimum Significant Value',
description='Minimum channel input value to be considered in advanced pixelwise merging.',
value=0.05,
range=(0.0, 1.0, 0.001),
uid=[0],
enabled= lambda node: (node.nbBrackets.value != 1),
),
desc.FloatParam(
name='maxSignificantValue',
label='Maximum Significant Value',
description='Maximum channel input value to be considered in advanced pixelwise merging.',
value=0.995,
range=(0.0, 1.0, 0.001),
uid=[0],
enabled= lambda node: (node.nbBrackets.value != 1),
),
desc.BoolParam(
name='computeLightMasks',
label='Compute Light Masks',
description="Compute masks of low and high lights and missing info.",
value=False,
uid=[0],
enabled= lambda node: node.nbBrackets.value != 1,
),
desc.BoolParam(
name='byPass',
label='Bypass',
Expand Down