From a72159c403a38ffbc8e3122fa228f53378357ef8 Mon Sep 17 00:00:00 2001 From: DrSlony Date: Mon, 29 Aug 2011 18:12:43 +0100 Subject: [PATCH] Increased noise_ab multiplier to 100 to fix problem with RT removing chrominance noise very poorly ever since the move to float. Issue 719 --- rtengine/dirpyrLab_denoise.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/dirpyrLab_denoise.cc b/rtengine/dirpyrLab_denoise.cc index 743174c44..bba868369 100644 --- a/rtengine/dirpyrLab_denoise.cc +++ b/rtengine/dirpyrLab_denoise.cc @@ -163,7 +163,7 @@ namespace rtengine { float noise_L = 10.0*dnparams.luma; float noisevar_L = SQR(noise_L); - float noise_ab = 25.0*dnparams.chroma; + float noise_ab = 100.0*dnparams.chroma; float noisevar_ab = SQR(noise_ab);