mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-04-04 03:21:20 +08:00
Fix: [JP] Commission suffix detection (fixed #1101)
This commit is contained in:
parent
ff3bb42cde
commit
4f8e7cb566
@ -1,6 +1,7 @@
|
||||
import re
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
import module.config.server as server
|
||||
from module.base.decorator import Config
|
||||
from module.base.filter import Filter
|
||||
from module.base.utils import *
|
||||
@ -36,8 +37,13 @@ class SuffixOcr(Ocr):
|
||||
image = super().pre_process(image)
|
||||
|
||||
left = np.where(np.min(image[5:-5, :], axis=0) < 85)[0]
|
||||
# Look back several pixels
|
||||
if server.server in ['jp']:
|
||||
look_back = 21
|
||||
else:
|
||||
look_back = 18
|
||||
if len(left):
|
||||
image = image[:, left[-1] - 15:]
|
||||
image = image[:, left[-1] - look_back:]
|
||||
|
||||
return image
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user