From d5a020fb3a252651c88994d87e4a381aba87bd3a Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Fri, 11 Oct 2019 13:13:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20sbb=5Ftextline=5Fdetector:=20Rem?= =?UTF-8?q?ove=20debug=20print()s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qurator/sbb_textline_detector/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/qurator/sbb_textline_detector/main.py b/qurator/sbb_textline_detector/main.py index 62fbc93..dfe47ec 100644 --- a/qurator/sbb_textline_detector/main.py +++ b/qurator/sbb_textline_detector/main.py @@ -43,7 +43,6 @@ class textlineerkenner: try: self.f_name = image_dir.split('/')[len(image_dir.split('/')) - 1] self.f_name = self.f_name.split('.')[0] - print(self.f_name) except: self.f_name = self.f_name.split('.')[0] self.dir_models = dir_models @@ -367,7 +366,6 @@ class textlineerkenner: return img_r def get_image_and_scales(self): - print(self.image_dir) self.image = cv2.imread(self.image_dir) self.height_org = self.image.shape[0] self.width_org = self.image.shape[1]