From 1cc63c6a307f6eb5c4128fa45b3c83427006db9b Mon Sep 17 00:00:00 2001 From: Max Sponsel Date: Sun, 13 Sep 2020 12:56:46 +0200 Subject: [PATCH] =?UTF-8?q?Entfernen=20der=20Print=20Befehle=20f=C3=BCr's?= =?UTF-8?q?=20Debugging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Code/Farbaenderung.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Code/Farbaenderung.py b/Code/Farbaenderung.py index d7dd31f..012ab2d 100644 --- a/Code/Farbaenderung.py +++ b/Code/Farbaenderung.py @@ -62,7 +62,7 @@ class Dyschromasie: self.cb_image[i, j, x] = gammaCorrection(self.img_mat[i, j, x]) rechen_Mat = np.copy(self.T_reversed.dot(sim_mat).dot(self.T)) - print(rechen_Mat) + # Einzelne Pixelwertberechnung for i in range(self.rows): for j in range(self.cols): @@ -76,6 +76,4 @@ class Dyschromasie: for x in range(3): self.sim_image[i, j, x] = reverseGammaCorrection(self.cb_image[i, j, x]) - print(self.img_mat[78, 86]) - print(self.sim_image[78, 86]) return self.sim_image