Reduce min_space between words from 10 to 5.

This commit is contained in:
Andrey Golovizin 2014-08-13 19:59:17 +02:00
parent a15cd7c4a2
commit 3ceda0a73f

View file

@ -79,7 +79,7 @@ class Line(PageObject):
@cached_property
@collect_iterable
def words(self):
for rotated_word_img in self.image.T._iter_lines(min_space=10):
for rotated_word_img in self.image.T._iter_lines(min_space=5):
yield Word(rotated_word_img.T, baseline=self.baseline)
@property