Merge with dev
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
|
||||
* along with RawTherapee. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "improccoordinator.h"
|
||||
#include "curves.h"
|
||||
@@ -59,6 +59,7 @@ ImProcCoordinator::ImProcCoordinator() :
|
||||
softProof(false),
|
||||
gamutCheck(false),
|
||||
sharpMask(false),
|
||||
sharpMaskChanged(false),
|
||||
scale(10),
|
||||
highDetailPreprocessComputed(false),
|
||||
highDetailRawComputed(false),
|
||||
@@ -126,6 +127,7 @@ ImProcCoordinator::ImProcCoordinator() :
|
||||
flatFieldAutoClipListener(nullptr),
|
||||
bayerAutoContrastListener(nullptr),
|
||||
xtransAutoContrastListener(nullptr),
|
||||
pdSharpenAutoContrastListener(nullptr),
|
||||
frameCountListener(nullptr),
|
||||
imageTypeListener(nullptr),
|
||||
actListener(nullptr),
|
||||
@@ -394,18 +396,31 @@ void ImProcCoordinator::updatePreviewImage(int todo, bool panningRelatedChange)
|
||||
}
|
||||
bool autoContrast = imgsrc->getSensorType() == ST_BAYER ? params->raw.bayersensor.dualDemosaicAutoContrast : params->raw.xtranssensor.dualDemosaicAutoContrast;
|
||||
double contrastThreshold = imgsrc->getSensorType() == ST_BAYER ? params->raw.bayersensor.dualDemosaicContrast : params->raw.xtranssensor.dualDemosaicContrast;
|
||||
imgsrc->demosaic(rp, autoContrast, contrastThreshold); //enabled demosaic
|
||||
imgsrc->demosaic(rp, autoContrast, contrastThreshold, params->pdsharpening.enabled);
|
||||
|
||||
if (imgsrc->getSensorType() == ST_BAYER && bayerAutoContrastListener && autoContrast) {
|
||||
bayerAutoContrastListener->autoContrastChanged(autoContrast ? contrastThreshold : -1.0);
|
||||
}
|
||||
if (imgsrc->getSensorType() == ST_FUJI_XTRANS && xtransAutoContrastListener && autoContrast) {
|
||||
bayerAutoContrastListener->autoContrastChanged(contrastThreshold);
|
||||
} else if (imgsrc->getSensorType() == ST_FUJI_XTRANS && xtransAutoContrastListener && autoContrast) {
|
||||
xtransAutoContrastListener->autoContrastChanged(autoContrast ? contrastThreshold : -1.0);
|
||||
}
|
||||
|
||||
// if a demosaic happened we should also call getimage later, so we need to set the M_INIT flag
|
||||
todo |= M_INIT;
|
||||
todo |= (M_INIT | M_CSHARP);
|
||||
|
||||
}
|
||||
|
||||
if ((todo & (M_RAW | M_CSHARP)) && params->pdsharpening.enabled) {
|
||||
double pdSharpencontrastThreshold = params->pdsharpening.contrast;
|
||||
imgsrc->captureSharpening(params->pdsharpening, sharpMask, pdSharpencontrastThreshold);
|
||||
if (pdSharpenAutoContrastListener && params->pdsharpening.autoContrast) {
|
||||
pdSharpenAutoContrastListener->autoContrastChanged(pdSharpencontrastThreshold);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ((todo & M_RAW)
|
||||
|| (!highDetailRawComputed && highDetailNeeded)
|
||||
|| (params->toneCurve.hrenabled && params->toneCurve.method != "Color" && imgsrc->isRGBSourceModified())
|
||||
|| (!params->toneCurve.hrenabled && params->toneCurve.method == "Color" && imgsrc->isRGBSourceModified())) {
|
||||
if (highDetailNeeded) {
|
||||
highDetailRawComputed = true;
|
||||
} else {
|
||||
@@ -1615,9 +1630,16 @@ void ImProcCoordinator::getSoftProofing(bool &softProof, bool &gamutCheck)
|
||||
gamutCheck = this->gamutCheck;
|
||||
}
|
||||
|
||||
void ImProcCoordinator::setSharpMask(bool sharpMask)
|
||||
ProcEvent ImProcCoordinator::setSharpMask (bool sharpMask)
|
||||
{
|
||||
this->sharpMask = sharpMask;
|
||||
if (this->sharpMask != sharpMask) {
|
||||
sharpMaskChanged = true;
|
||||
this->sharpMask = sharpMask;
|
||||
return params->pdsharpening.enabled ? rtengine::EvPdShrMaskToggled : rtengine::EvShrEnabled;
|
||||
} else {
|
||||
sharpMaskChanged = false;
|
||||
return rtengine::EvShrEnabled;
|
||||
}
|
||||
}
|
||||
|
||||
void ImProcCoordinator::saveInputICCReference(const Glib::ustring& fname, bool apply_wb)
|
||||
@@ -1818,8 +1840,11 @@ void ImProcCoordinator::process()
|
||||
|| params->retinex != nextParams->retinex
|
||||
|| params->wavelet != nextParams->wavelet
|
||||
|| params->dirpyrequalizer != nextParams->dirpyrequalizer
|
||||
|| params->dehaze != nextParams->dehaze;
|
||||
|| params->dehaze != nextParams->dehaze
|
||||
|| params->pdsharpening != nextParams->pdsharpening
|
||||
|| sharpMaskChanged;
|
||||
|
||||
sharpMaskChanged = false;
|
||||
*params = *nextParams;
|
||||
int change = changeSinceLast;
|
||||
changeSinceLast = 0;
|
||||
|
Reference in New Issue
Block a user