dehaze: tweak epsilon to avoid artifacts in corner cases

This commit is contained in:
Alberto Griggio 2018-10-27 15:25:38 +02:00
parent c4ee5e611d
commit 7fb90644d3

View File

@ -282,7 +282,7 @@ void ImProcFunctions::dehaze(Imagefloat *img)
}
const int radius = patchsize * 4;
const float epsilon = 1e-7;
const float epsilon = 1e-5;
array2D<float> &t = t_tilde;
{