-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage-to-text.py
42 lines (34 loc) · 1.12 KB
/
image-to-text.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import cv2
import pytesseract
import os
from PIL import Image
import sys
import numpy as np
pytesseract.pytesseract.teasearact_cmd ="C:\Program Files\Tesseract-OCR"
def get_string(img_path):
# Read image with opencv
img = cv2.imread(img_path)
# Convert to gray
img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# Apply dilation and erosion to remove some noise
kernel = np.ones((1, 1), np.uint8)
img = cv2.dilate(img, kernel, iterations=1)
img = cv2.erode(img, kernel, iterations=1)
# Write the image after apply opencv to do some ...
cv2.imwrite("sample.png", img)
# Recognize text with tesseract for python
result = pytesseract.image_to_string(Image.open("sample.png"))
os.remove("sample.png")
return result
if __name__ == '__main__':
from sys import argv
if len(argv)<2:
print("Usage: python image-to-text.py relative-filepath")
else:
print('START')
for i in range(1,len(argv)):
print(argv[i])
print(get_string(argv[i]))
print()
print()
print('END')