From 98c80f161ae8067d9d5a500b912f7ab01c3a4f14 Mon Sep 17 00:00:00 2001 From: xxxpsyduck Date: Fri, 19 Jun 2020 13:39:58 +0700 Subject: [PATCH] revert change in db_process.py --- ppocr/data/det/db_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppocr/data/det/db_process.py b/ppocr/data/det/db_process.py index 72c9acd9..ee131501 100644 --- a/ppocr/data/det/db_process.py +++ b/ppocr/data/det/db_process.py @@ -104,7 +104,7 @@ class DBProcessTrain(object): if imgvalue is None: logger.info("{} does not exist!".format(img_path)) return None - elif len(list(imgvalue.shape)) == 2 or imgvalue.shape[2] == 1: + if len(list(imgvalue.shape)) == 2 or imgvalue.shape[2] == 1: imgvalue = cv2.cvtColor(imgvalue, cv2.COLOR_GRAY2BGR) data = self.make_data_dict(imgvalue, gt_label) data = AugmentData(data) -- GitLab