From fea9326ffa353bb8ec5db0f5762721d9bbf98c8c Mon Sep 17 00:00:00 2001 From: guoh064 <50830808+guoh064@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:52:20 +0800 Subject: [PATCH] Revert "Upd: [JP] commission suffix ocr pre_process (#4403)" This reverts commit 4245109ed243cd8f152d0a88b0ed8f8aabdf2605. --- module/commission/project.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/module/commission/project.py b/module/commission/project.py index ea2557e9d..babd46897 100644 --- a/module/commission/project.py +++ b/module/commission/project.py @@ -36,13 +36,6 @@ class SuffixOcr(Ocr): if len(left): image = image[:, left[-1] - look_back:] - if server.server in ['jp']: - # slice top and bottom part to get clearer roman digits - # will need to pad white background for better recognization - image = image[8:-10, :] - cv2.normalize(image, image, -55, 255, cv2.NORM_MINMAX) - image = (image > 128).astype(np.uint8) * 255 - image = np.pad(image, ((4, 4), (0, 0)), mode='constant', constant_values=255) return image @@ -174,7 +167,7 @@ class Commission: self.genre = self.commission_name_parse(self.name) # Suffix - ocr = SuffixOcr(button, lang='azur_lane', letter=(201, 201, 201), threshold=128, alphabet='IV') + ocr = SuffixOcr(button, lang='azur_lane', letter=(255, 255, 255), threshold=128, alphabet='IV') self.suffix = self.beautify_name(ocr.ocr(self.image)) # Duration time