Increased noise_ab multiplier to 100 to fix problem with RT removing chrominance noise very poorly ever since the move to float. Issue 719

This commit is contained in:
DrSlony
2011-08-29 18:12:43 +01:00
parent 5a5775edba
commit a72159c403

View File

@@ -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);