🐛 sbb_textline_detector: Disable multiprocessing to fix race condition

Lines were sorted in the wrong regions. Work around this by disabling
multiprocessing until a proper fix is done.
This commit is contained in:
Gerber, Mike 2019-11-20 09:50:29 +01:00
parent 4aed06a325
commit 8fa7179560

View file

@ -1109,7 +1109,7 @@ class textlineerkenner:
slope_biggest=0#self.return_deskew_slop(img_int_p,sigma_des)
num_cores = cpu_count()
num_cores = 1 # XXX cpu_count()
q = Queue()
poly=Queue()
box_sub=Queue()