Revert "Fix: jp commission suffix pre_process (#4435)"

This reverts commit 52a29aa288b13d26f9a49c21ec9adc425be3c165.
This commit is contained in:
guoh064 2025-01-16 00:52:17 +08:00
parent 44742e3757
commit 2ff0038b41

View File

@ -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