forked from pratikkumar399/Language-Translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vision.py
152 lines (128 loc) · 4.8 KB
/
vision.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import cv2
import os, io
import numpy as np
from google.cloud import vision#cloud api
from google.cloud import translate_v2 #cloud api
import tkinter as tk
from tkinter import filedialog
from google.cloud import texttospeech_v1 #cloud api
from deep_translator import GoogleTranslator
from langdetect import detect
from mutagen.mp3 import MP3
def deskew(cvImage):
image = cvImage.copy()
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
gray = cv2.bitwise_not(gray)
thresh = cv2.threshold(gray, 0, 255,cv2.THRESH_BINARY | cv2.THRESH_OTSU)[1]#binary image
coords = np.column_stack(np.where(thresh > 0))
angle = cv2.minAreaRect(coords)[-1]
if angle > 45:
angle=90-angle
elif angle < -45:
angle = -(90 + angle)
else:
angle = -angle
(h, w) = image.shape[:2]
center = (w // 2, h // 2)
M = cv2.getRotationMatrix2D(center, angle, 1.0)
rotated = cv2.warpAffine(thresh, M, (w, h),flags=cv2.INTER_CUBIC, borderMode=cv2.BORDER_REPLICATE)
return rotated
def noise_removal(image):
blur = cv2.GaussianBlur(image, (0,0), sigmaX=33, sigmaY=33)
divide = cv2.divide(image, blur, scale=255)
output_gaus=cv2.GaussianBlur(divide,(5,5),0)
sharpened=cv2.addWeighted(image,1.5,output_gaus,-0.5,0)
return sharpened
# def thick_font(image):
# image = cv2.bitwise_not(image)
# kernel = np.ones((2,2),np.uint8)
# image = cv2.dilate(image, kernel, iterations=1)
# image = cv2.bitwise_not(image)
# return (image)
def langs():
lang_file=open("D:\Programming\AI\Project\language_support.txt","r")
target_language=input("enter the name of language(like: Hindi): ")
str=" "
while(str):
str=lang_file.readline()
l=str.split()
if target_language in l:
return l[len(l)-1]
def openfile():
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = r'api_json_file/translator-346404-9fadb5fe6cc1.json'#cloud vision
#os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = r'translator-346404-9711a44a0c12.json'#translater api
#os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = r'translator-346404-3378f489c654.json'#texttospeech
client = vision.ImageAnnotatorClient()
extensions = ("*.jpg", "*.png", "*.jpeg")
filepath = filedialog.askopenfilename(title="Choose The Image", filetypes=(
("images", extensions), ("all files", "*.*")))
file_path = os.path.join(filepath)
with io.open(file_path, 'rb') as image_file:
content = image_file.read()
image = vision.Image(content=content)
response = client.document_text_detection(image=image)
Text = response.full_text_annotation.text
print(Text)
souce_lang=detect(Text)
#translate
file=cv2.imread(filepath)
new_img=deskew(file)
new_img = cv2.bitwise_not(new_img)
#image processing ------
noise=noise_removal(new_img)
height = noise.shape[0]
width = noise.shape[1]
if height > 1000 or width >1000:
height=400
width=400
dsize = (width, height)
output = cv2.resize(noise, dsize)
else:
height=height+int((noise.shape[0]/100)*30)
width=width+int((noise.shape[1]/100)*30)
dsize = (width, height)
output = cv2.resize(noise, dsize)
cv2.imshow("image",output)
target_lang=langs()
translated_text=GoogleTranslator(source=souce_lang, target=target_lang).translate(text=Text)
print(translated_text)
"""trans=translate_v2.Client()
file=cv2.imread(filepath)
cv2.imshow("image",file)
target_lang=langs()
output=trans.translate(Text,target_language=target_lang)
#print('\n'u'{}'.format(output['detectedSourceLanguage']))
print("\n---------translated text in native language---------\n")
print(u'{}'.format(output['translatedText']))"""
#text to Speech
client_1=texttospeech_v1.TextToSpeechClient()
result=texttospeech_v1.SynthesisInput(text=translated_text)
voice1=texttospeech_v1.VoiceSelectionParams(
language_code=target_lang,
ssml_gender=texttospeech_v1.SsmlVoiceGender.FEMALE
)
audio_config=texttospeech_v1.AudioConfig(
audio_encoding=texttospeech_v1.AudioEncoding.MP3
)
response=client_1.synthesize_speech(
input=result,
voice=voice1,
audio_config=audio_config
)
with open('audio/Temporary.mp3', 'wb') as output1:
output1.write(response.audio_content)
os.system("start audio/Temporary.mp3")
# while(True):
key=input("enter the key q: ")
if key=='q':
os.remove("audio/Temporary.mp3")
name=input("enter the audio file name: ")
with open('audio/'+name+'.mp3', 'wb') as output1:
output1.write(response.audio_content)
# break
else:
os.remove("audio/Temporary.mp3")
# break
root =tk.Tk()
root.withdraw()
openfile()