From a56fa557094f82ae978f632efb561a446356d73f Mon Sep 17 00:00:00 2001 From: Andrey Golovizin Date: Tue, 26 Aug 2014 17:41:22 +0200 Subject: [PATCH] Disable overlap check in image.combine(). --- pixelocr/image.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pixelocr/image.py b/pixelocr/image.py index 99895da..2ba94f2 100644 --- a/pixelocr/image.py +++ b/pixelocr/image.py @@ -42,8 +42,9 @@ def overlap(*images): def combine(*images): - if overlap(*images): - raise NotImplementedError + # TODO: properly combine overlapping glyphs + # if overlap(*images): + # raise NotImplementedError left, top, right, bottom = bbox(*images) width = right - left