mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-04-04 03:21:20 +08:00
Revert "Fix: jp commission suffix pre_process (#4435)"
This reverts commit 52a29aa288b13d26f9a49c21ec9adc425be3c165.
This commit is contained in:
parent
44742e3757
commit
2ff0038b41
@ -41,9 +41,8 @@ class SuffixOcr(Ocr):
|
||||
# will need to pad white background for better recognization
|
||||
image = image[8:-10, :]
|
||||
cv2.normalize(image, image, -55, 255, cv2.NORM_MINMAX)
|
||||
image = (image > 80).astype(np.uint8) * 255
|
||||
image = np.pad(image, ((0, 1), (0, 0)), mode='edge')
|
||||
image = np.pad(image, ((4, 3), (0, 0)), mode='constant', constant_values=255)
|
||||
image = (image > 128).astype(np.uint8) * 255
|
||||
image = np.pad(image, ((4, 4), (0, 0)), mode='constant', constant_values=255)
|
||||
return image
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user