Change max edge stopping to 3 when local contrast enabled
This commit is contained in:
parent
11f81d2153
commit
1ffae4c706
@ -5240,7 +5240,7 @@ void ImProcFunctions::EPDToneMap(LabImage *lab, unsigned int Iterates, int skip)
|
||||
}
|
||||
|
||||
const float stren = params->epd.strength;
|
||||
const float edgest = std::min(params->epd.edgeStopping, params->localContrast.enabled ? 3.2 : 4.0);
|
||||
const float edgest = std::min(params->epd.edgeStopping, params->localContrast.enabled ? 3.0 : 4.0);
|
||||
const float sca = params->epd.scale;
|
||||
const float gamm = params->epd.gamma;
|
||||
const float rew = params->epd.reweightingIterates;
|
||||
|
Loading…
x
Reference in New Issue
Block a user