From 2e435fd634825ca78cc7b834a8056e6292f0e752 Mon Sep 17 00:00:00 2001
From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu>
Date: Wed, 24 Feb 2021 14:24:28 +0100
Subject: [PATCH] Adjust plot font sizes.

---
 pysegcnn/core/graphics.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pysegcnn/core/graphics.py b/pysegcnn/core/graphics.py
index bd93df9..947d913 100644
--- a/pysegcnn/core/graphics.py
+++ b/pysegcnn/core/graphics.py
@@ -39,18 +39,18 @@ from pysegcnn.main.train_config import HERE
 
 # plot font size configuration
 SMALL = 12
-MEDIUM = 14
+MEDIUM = 15
 BIG = 16
 
 # controls default font size
 plt.rc('font', size=MEDIUM)
 
 # axes labels size
-plt.rc('axes', titlesize=BIG, labelsize=MEDIUM)
+plt.rc('axes', titlesize=BIG, labelsize=BIG)
 
 # axes ticks size
-plt.rc('xtick', labelsize=SMALL)
-plt.rc('ytick', labelsize=SMALL)
+plt.rc('xtick', labelsize=MEDIUM)
+plt.rc('ytick', labelsize=MEDIUM)
 
 # legend font size
 plt.rc('legend', fontsize=MEDIUM)
-- 
GitLab