This commit is contained in:
David Tschumperlé 2018-06-06 00:01:27 +02:00 committed by Stefan Haustein
parent 473aa90a14
commit 82ca023f6b

View File

@ -27484,7 +27484,7 @@ namespace cimg_library_suffixed {
case 2 : { // Salt & Pepper noise
if (nsigma<0) nsigma = -nsigma;
if (M==m) {
if (cimg::type<T>::is_float()) { m = (Tfloat)0; M = (Tfloat)1; }
if (cimg::type<T>::is_float()) { --m; ++M; }
else { m = (Tfloat)cimg::type<T>::min(); M = (Tfloat)cimg::type<T>::max(); }
}
cimg_rof(*this,ptrd,T) if (cimg::rand(100)<nsigma) *ptrd = (T)(cimg::rand()<0.5?M:m);