From b4c9f55db94de6a02501c448484aab28d4ce886e Mon Sep 17 00:00:00 2001 From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu> Date: Thu, 4 Feb 2021 17:56:20 +0100 Subject: [PATCH] Use RGB as default plotting bands. --- pysegcnn/core/trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysegcnn/core/trainer.py b/pysegcnn/core/trainer.py index deb471a..59037cc 100644 --- a/pysegcnn/core/trainer.py +++ b/pysegcnn/core/trainer.py @@ -2074,7 +2074,7 @@ class NetworkInference(BaseConfig): predict_scene: bool = True plot_scenes: bool = False plot_bands: list = dataclasses.field( - default_factory=lambda: ['swir2', 'nir', 'green']) + default_factory=lambda: ['red', 'green', 'blue']) cm: bool = True figsize: tuple = (10, 10) alpha: int = 5 -- GitLab