From e27af4890caa2216c786dd798aa1a8b62ce7219e Mon Sep 17 00:00:00 2001
From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu>
Date: Wed, 19 Aug 2020 11:21:47 +0200
Subject: [PATCH] Renamed noise mode from 'gaussian' to 'add'

---
 pysegcnn/main/config.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pysegcnn/main/config.py b/pysegcnn/main/config.py
index c307f1d..6f985b2 100644
--- a/pysegcnn/main/config.py
+++ b/pysegcnn/main/config.py
@@ -85,7 +85,7 @@ dataset_config = {
     #   - Noise:  add gaussian noise with defined mean and variance to an image
     #             two modes for adding noise are available
     #                 - speckle:  image = image + image * noise,
-    #                 - gaussian: image = image + noise
+    #                 - add: image = image + noise
     #             pixel values = exclude (default=0) are not modified by adding
     #             noise (i.e., the "no data" pixels added by the padding)
     # More detail can be found in pytorch.transforms.py
-- 
GitLab