From 7c961606f3c7befda8fee10f8c7bc863e6c24362 Mon Sep 17 00:00:00 2001 From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu> Date: Wed, 3 Feb 2021 16:42:33 +0000 Subject: [PATCH] Remove aerosol and cirrus bands from analysis. --- pysegcnn/plot/plot_config.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pysegcnn/plot/plot_config.py b/pysegcnn/plot/plot_config.py index 93ae555..cc90e41 100644 --- a/pysegcnn/plot/plot_config.py +++ b/pysegcnn/plot/plot_config.py @@ -34,18 +34,18 @@ DRIVE_PATH = pathlib.Path('/mnt/CEPH_PROJECTS/cci_snow/dfrisinghelli/Datasets') # DRIVE_PATH = pathlib.Path('/home/dfrisinghelli/Datasets') # name and paths to the datasets -DATASETS = {'Sparcs': {'root_dir': DRIVE_PATH.joinpath('Sparcs'), - 'merge_labels': {'Shadow_over_water': 'Shadow', - 'Flooded': 'Land'}, - 'gt_pattern': '(.*)mask\\.png'}, - 'Alcd': {'root_dir': DRIVE_PATH.joinpath('Alcd'), +# DATASETS = {'Sparcs': {'root_dir': DRIVE_PATH.joinpath('Sparcs'), + # 'merge_labels': {'Shadow_over_water': 'Shadow', + # 'Flooded': 'Land'}, + # 'gt_pattern': '(.*)mask\\.png'}, +DATASETS = {'Alcd': {'root_dir': DRIVE_PATH.joinpath('Alcd'), 'merge_labels': {'Cirrus': 'Cloud', 'Not_used': 'No_data'}, 'gt_pattern': '(.*)Labels\\.tif'} - } + } # spectral bands to plot distribution -BANDS = ['ublue', 'blue', 'green', 'red', 'nir', 'cirrus', 'swir1', 'swir2'] +BANDS = ['blue', 'green', 'red', 'nir', 'swir1', 'swir2'] # plot parameters FIGSIZE = (16, 9) -- GitLab