Fixed bug in full image processing, "False color suppression" was always on and set to 1

See issue 752
This commit is contained in:
Oliver Duis
2011-06-17 06:58:26 +02:00
parent 38b8fcb14c
commit be4c642f0c

View File

@@ -415,9 +415,9 @@ void RawImageSource::getImage (ColorTemp ctemp, int tran, Imagefloat* image, Pre
if (tran & TR_VFLIP)
vflip (image);
// Color correction
// Color correction (only when running on full resolution)
if (ri->isBayer() && pp.skip==1)
correction_YIQ_LQ (image, pp.skip==1?1:raw.ccSteps);
correction_YIQ_LQ (image, raw.ccSteps);
// Applying postmul
colorSpaceConversion (image, cmp, embProfile, camProfile, xyz_cam, defGain);