mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-04-04 03:21:20 +08:00
Revert "Upd: [JP] commission suffix ocr pre_process (#4403)"
This reverts commit 4245109ed243cd8f152d0a88b0ed8f8aabdf2605.
This commit is contained in:
parent
2ff0038b41
commit
fea9326ffa
@ -36,13 +36,6 @@ class SuffixOcr(Ocr):
|
|||||||
if len(left):
|
if len(left):
|
||||||
image = image[:, left[-1] - look_back:]
|
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
|
return image
|
||||||
|
|
||||||
|
|
||||||
@ -174,7 +167,7 @@ class Commission:
|
|||||||
self.genre = self.commission_name_parse(self.name)
|
self.genre = self.commission_name_parse(self.name)
|
||||||
|
|
||||||
# Suffix
|
# 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))
|
self.suffix = self.beautify_name(ocr.ocr(self.image))
|
||||||
|
|
||||||
# Duration time
|
# Duration time
|
||||||
|
Loading…
x
Reference in New Issue
Block a user