From a41f123d3ce598d338c1200fabc0a6b101a50561 Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Tue, 14 Aug 2018 16:49:10 +0200 Subject: [PATCH] Make bright less bright It was a bit much I guess. --- Mutation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mutation.h b/Mutation.h index 634ab58..da35256 100644 --- a/Mutation.h +++ b/Mutation.h @@ -107,7 +107,7 @@ public: Image * getMutated(Image* img) { Image* mut = new Image(*img); mut->modulate(125, 100, 100); - mut->sigmoidalContrast(false, 20.0); + mut->sigmoidalContrast(false, 5.0); return mut; } string ToString() {