🐛 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.
pull/1/head
Gerber, Mike 5 years ago
parent 4aed06a325
commit 8fa7179560

@ -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()

Loading…
Cancel
Save