From cdcc8f12fdadd43171446205b49bad978402ff4c Mon Sep 17 00:00:00 2001
From: monadal <morgane.nadal@inria.fr>
Date: Wed, 11 Mar 2020 17:26:46 +0100
Subject: [PATCH] modified selem (in micron) in prms + in other fcts

---
 brick/general/feedback.py | 8 ++++----
 nutrimorph.py             | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/brick/general/feedback.py b/brick/general/feedback.py
index 814a05e..a0973cc 100644
--- a/brick/general/feedback.py
+++ b/brick/general/feedback.py
@@ -57,10 +57,10 @@ def PlotSomas(somas: Sequence[soma_t], som_nfo: dict, axes: dict) -> None:
     for soma in somas:
         axes[soma.uid] = ot_.PlotLMap(som_nfo["lmp"], labels=soma.uid)
         pl_.title(f"Soma.{soma.uid}")
-    # pl_.matshow(som_nfo["influence_map"].max(axis=0)), pl_.title("Soma Influencess")
-    # pl_.show(block=True)
-    # pl_.matshow(som_nfo["dist_to_closest"].max(axis=0)), pl_.title("Soma Distances")
-    # pl_.show(block=True)
+    pl_.matshow(som_nfo["influence_map"].max(axis=0)), pl_.title("Soma Influencess")
+    pl_.show(block=True)
+    pl_.matshow(som_nfo["dist_to_closest"].max(axis=0)), pl_.title("Soma Distances")
+    pl_.show(block=True)
 
 
 def PlotExtensions(
diff --git a/nutrimorph.py b/nutrimorph.py
index c51aaff..6872858 100644
--- a/nutrimorph.py
+++ b/nutrimorph.py
@@ -96,7 +96,7 @@ image = io_.imread(data_path)
 
 # Image size verification - simple version without user interface
 image = in_.ImageVerification(image, channel)
-# TODO make a user friendly interface (PySide2) BUT bug with the importation of Shiboken2 on Windows8.1.
+# TODO make a user friendly interface (PySide2) /!\ conflicts between some versions of PySide2 and Python3
 
 image = image[:, 512:, 512:]  # 562
 img_shape = image.shape
-- 
GitLab