From 35e6a0e40c345a4d165c71982b5bfde2d7cbef0b Mon Sep 17 00:00:00 2001 From: Desmis Date: Fri, 6 Aug 2021 11:38:10 +0200 Subject: [PATCH] Change minimum size RT-spot for denoise 128x128 --- rtdata/languages/default | 2 +- rtengine/iplocallab.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtdata/languages/default b/rtdata/languages/default index 9dd481e93..7be299f1a 100644 --- a/rtdata/languages/default +++ b/rtdata/languages/default @@ -2706,7 +2706,7 @@ TP_LOCALLAB_DENOIQUA_TOOLTIP;Conservative mode preserves low frequency detail. A TP_LOCALLAB_DENOIS;Denoise TP_LOCALLAB_DENOITHR_TOOLTIP;Adjusts edge detection to help reduce noise in uniform, low-contrast areas. TP_LOCALLAB_DENOI_EXP;Denoise -TP_LOCALLAB_DENOI_TOOLTIP;This module can be used for noise reduction either on its own (at the end of the processing pipeline) or in addition to the Noise Reduction module in the Detail tab (which works at the beginning of the pipeline).\n Scope allows you to differentiate the action based on color (deltaE). +TP_LOCALLAB_DENOI_TOOLTIP;This module can be used for noise reduction either on its own (at the end of the processing pipeline) or in addition to the Noise Reduction module in the Detail tab (which works at the beginning of the pipeline).\n Scope allows you to differentiate the action based on color (deltaE).\nMinimum RT-spot size: 128x128 TP_LOCALLAB_DEPTH;Depth TP_LOCALLAB_DETAIL;Local contrast TP_LOCALLAB_DETAILFRA;Edge detection - DCT diff --git a/rtengine/iplocallab.cc b/rtengine/iplocallab.cc index da829ec5e..002843fa9 100644 --- a/rtengine/iplocallab.cc +++ b/rtengine/iplocallab.cc @@ -62,7 +62,7 @@ namespace constexpr int limscope = 80; constexpr int mSPsharp = 39; //minimum size Spot Sharp due to buildblendmask constexpr int mSPwav = 32; //minimum size Spot Wavelet -constexpr int mDEN = 64; //minimum size Spot Denoise +constexpr int mDEN = 128; //minimum size Spot Denoise constexpr int mSP = 5; //minimum size Spot constexpr float MAXSCOPE = 1.25f; constexpr float MINSCOPE = 0.025f;