Merge pull request #13 from OCR-D/image-path

🐛 read from image_path, not image
pull/15/head
Clemens Neudecker 4 years ago committed by GitHub
commit 9a97c972d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -193,7 +193,7 @@ class SbbBinarizer:
(image is None and image_path is None): (image is None and image_path is None):
raise ValueError("Must pass either a opencv2 image or an image_path") raise ValueError("Must pass either a opencv2 image or an image_path")
if image_path is not None: if image_path is not None:
image = cv2.imread(image) image = cv2.imread(image_path)
self.start_new_session() self.start_new_session()
list_of_model_files = glob('%s/*.h5' % self.model_dir) list_of_model_files = glob('%s/*.h5' % self.model_dir)
img_last = 0 img_last = 0

Loading…
Cancel
Save