From b4bef6460c048a64ebbce6ccf2e94c6f23cebd9d Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Fri, 11 Oct 2019 13:15:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20sbb=5Ftextline=5Fdetector:=20Use?= =?UTF-8?q?=20the=20correct=20image=20filename=20in=20the=20output=20PAGE?= 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, 1 insertion(+), 1 deletion(-) diff --git a/qurator/sbb_textline_detector/main.py b/qurator/sbb_textline_detector/main.py index affb1c0..fdd5308 100644 --- a/qurator/sbb_textline_detector/main.py +++ b/qurator/sbb_textline_detector/main.py @@ -1213,7 +1213,7 @@ class textlineerkenner: page = ET.SubElement(data, 'Page') - page.set('imageFilename', self.f_name + '.tif') + page.set('imageFilename', self.image_dir) page.set('imageHeight', str(self.height_org)) page.set('imageWidth', str(self.width_org))