-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.py
More file actions
484 lines (401 loc) · 16.2 KB
/
Copy pathapp.py
File metadata and controls
484 lines (401 loc) · 16.2 KB
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
from flask import Flask, render_template, send_from_directory, request, jsonify, Response
import os
import cv2
import mediapipe as mp
from spellchecker import SpellChecker
import numpy as np
import time
import pyttsx3
from threading import Lock
app = Flask(__name__)
# Initialize thread-safe lock for TTS engine
tts_lock = Lock()
# MODEL 1 CODE
VIDEO_FOLDER = os.path.join("static", "signs")
app.config["VIDEO_FOLDER"] = VIDEO_FOLDER
# Alphabet fallback (A-Z sign videos) - Ensure these files exist
ALPHABET_MAP = {chr(i): f"{chr(i).upper()}.mp4" for i in range(97, 123)}
VIDEO_MAP = {
"hello": "Hello.mp4",
"world": "World.mp4",
# Add more word mappings here
}
@app.route('/translate', methods=['POST'])
def translate_sentence():
data = request.get_json()
sentence = data.get("sentence", "").strip().lower()
if not sentence:
return jsonify({"videos": ["/static/signs/Talk.mp4"]})
video_files = []
for word in sentence.split():
if word in VIDEO_MAP:
video_files.append(f"/static/signs/{VIDEO_MAP[word]}")
else:
# Handle unknown words with character breakdown
for char in word:
if char in ALPHABET_MAP:
video_path = f"/static/signs/{ALPHABET_MAP[char]}"
if os.path.exists(os.path.join(VIDEO_FOLDER, ALPHABET_MAP[char])):
video_files.append(video_path)
if not video_files:
video_files.append("/static/signs/Talk.mp4")
return jsonify({"videos": video_files})
@app.route('/static/signs/<path:filename>')
def serve_signs_video(filename):
return send_from_directory(VIDEO_FOLDER, filename)
# MODEL 11 CODE
VIDEO_DIR = "static/signs2"
def get_video_files(word):
videos = []
for char in word.upper():
filename = f"{char}.mp4"
filepath = os.path.join(VIDEO_DIR, filename)
if os.path.exists(filepath):
videos.append(f"/static/signs2/{filename}")
return videos
@app.route('/translate_word')
def translate_word():
word = request.args.get('word', '').lower().strip()
if not word:
return jsonify({"videos": []})
videos = get_video_files(word)
return jsonify({"videos": videos})
@app.route('/static/signs2/<path:filename>')
def serve_signs2_video(filename):
return send_from_directory(VIDEO_DIR, filename)
# MODEL 2 CODE
mp_hands = mp.solutions.hands
mp_drawing = mp.solutions.drawing_utils
hands = mp_hands.Hands(
static_image_mode=False,
max_num_hands=1,
min_detection_confidence=0.8,
min_tracking_confidence=0.8
)
# Global variables with thread safety
detected_text = ""
full_text = ""
is_running = True
last_detection_time = time.time()
detection_delay = 1.5
spell = SpellChecker()
def detect_manual_sign(hand_landmarks):
# Extract landmark positions
landmarks = []
for landmark in hand_landmarks.landmark:
landmarks.append((landmark.x, landmark.y, landmark.z))
# Define conditions for each letter and number
thumb_tip = landmarks[4] # Thumb tip
index_tip = landmarks[8] # Index finger tip
middle_tip = landmarks[12] # Middle finger tip
ring_tip = landmarks[16] # Ring finger tip
pinky_tip = landmarks[20] # Pinky finger tip
# Calculate distances between fingertips
def distance(p1, p2):
return np.sqrt((p1[0] - p2[0])**2 + (p1[1] - p2[1])**2)
# Detect "A" (Thumb and index finger touching)
if distance(thumb_tip, index_tip) < 0.05:
return 'A'
# Detect "B" (Fingers curled into a C shape)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return 'B'
# Detect "C" (All fingers extended)
fingertips = [index_tip, middle_tip, ring_tip, pinky_tip]
y_coords = [tip[1] for tip in fingertips]
if np.std(y_coords) < 0.02:
return 'C'
# Detect "D" (Index finger extended, others curled)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return 'D'
# Detect "E" (All fingers curled into a fist)
if (distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return 'E'
# Detect "F" (Thumb and index finger touching, others extended)
if (distance(thumb_tip, index_tip) < 0.05 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return 'F'
# Detect "G" (Index finger pointing, thumb touching middle finger)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) < 0.05):
return 'G'
# Detect "H" (Index and middle fingers extended, others curled)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return 'H'
# Detect "I" (Pinky finger extended, others curled)
if (distance(pinky_tip, thumb_tip) > 0.1 and
distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05):
return 'I'
# Detect "J" (Pinky finger extended with a hook, others curled)
if (distance(pinky_tip, thumb_tip) > 0.1 and
pinky_tip[1] < thumb_tip[1]): # Pinky above thumb
return 'J'
# Detect "K" (Index and middle fingers extended, thumb touching ring finger)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) < 0.05):
return 'K'
# Detect "L" (Index finger and thumb extended, others curled)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return 'L'
# Detect "M" (All fingers curled, thumb over fingers)
if (distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05 and
thumb_tip[1] > index_tip[1]): # Thumb above index
return 'M'
# Detect "N" (Index and middle fingers curled, thumb over fingers)
if (distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return 'N'
# Detect "O" (Fingers curled into an O shape)
if (distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05 and
thumb_tip[0] > index_tip[0]): # Thumb to the right of index
return 'O'
# Detect "P" (Index finger pointing down, thumb extended)
if (distance(index_tip, thumb_tip) > 0.1 and
index_tip[1] > thumb_tip[1]): # Index below thumb
return 'P'
# Detect "Q" (Index finger pointing, thumb touching middle finger)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) < 0.05):
return 'Q'
# Detect "R" (Index and middle fingers crossed)
if (distance(index_tip, middle_tip) < 0.05):
return 'R'
# Detect "S" (All fingers curled into a fist)
if (distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return 'S'
# Detect "T" (Thumb between index and middle fingers)
if (distance(thumb_tip, index_tip) < 0.05 and
distance(thumb_tip, middle_tip) < 0.05):
return 'T'
# Detect "U" (Index and middle fingers extended, others curled)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return 'U'
# Detect "V" (Index and middle fingers extended and apart)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(index_tip, middle_tip) > 0.1):
return 'V'
# Detect "W" (Index, middle, and ring fingers extended)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) < 0.05):
return 'W'
# Detect "X" (Index finger curled, others extended)
if (distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return 'X'
# Detect "Y" (Thumb and pinky extended, others curled)
if (distance(thumb_tip, pinky_tip) > 0.1 and
distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05):
return 'Y'
# Detect "Z" (Index finger pointing, thumb touching ring finger)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) < 0.05):
return 'Z'
# Detect Numbers (0-9)
# Detect "0" (Fingers curled into a circle)
if (distance(index_tip, thumb_tip) < 0.05 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return '0'
# Detect "1" (Index finger extended, others curled)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) < 0.05 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return '1'
# Detect "2" (Index and middle fingers extended, others curled)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) < 0.05 and
distance(pinky_tip, thumb_tip) < 0.05):
return '2'
# Detect "3" (Index, middle, and ring fingers extended)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) < 0.05):
return '3'
# Detect "4" (All fingers extended)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return '4'
# Detect "5" (All fingers extended and spread apart)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1 and
distance(index_tip, middle_tip) > 0.1 and
distance(middle_tip, ring_tip) > 0.1 and
distance(ring_tip, pinky_tip) > 0.1):
return '5'
# Detect "6" (Thumb touching pinky, others extended)
if (distance(thumb_tip, pinky_tip) < 0.05 and
distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1):
return '6'
# Detect "7" (Thumb touching ring finger, others extended)
if (distance(thumb_tip, ring_tip) < 0.05 and
distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return '7'
# Detect "8" (Thumb touching middle finger, others extended)
if (distance(thumb_tip, middle_tip) < 0.05 and
distance(index_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return '8'
# Detect "9" (Thumb touching index finger, others extended)
if (distance(thumb_tip, index_tip) < 0.05 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1):
return '9'
# Detect space (All fingers extended and spread apart)
if (distance(index_tip, thumb_tip) > 0.1 and
distance(middle_tip, thumb_tip) > 0.1 and
distance(ring_tip, thumb_tip) > 0.1 and
distance(pinky_tip, thumb_tip) > 0.1 and
distance(index_tip, middle_tip) > 0.1 and
distance(middle_tip, ring_tip) > 0.1 and
distance(ring_tip, pinky_tip) > 0.1):
return ' '
return None # No manual sign detected
def generate_frames():
global detected_text, full_text, is_running, last_detection_time
cap = cv2.VideoCapture(0)
while cap.isOpened():
ret, frame = cap.read()
if not ret:
break
if is_running:
frame = cv2.flip(frame, 1)
rgb_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
results = hands.process(rgb_frame)
if results.multi_hand_landmarks:
for hand_landmarks in results.multi_hand_landmarks:
predicted_sign = detect_manual_sign(hand_landmarks)
if predicted_sign:
current_time = time.time()
if current_time - last_detection_time >= detection_delay:
detected_text = predicted_sign
full_text += predicted_sign
last_detection_time = current_time
mp_drawing.draw_landmarks(frame, hand_landmarks, mp_hands.HAND_CONNECTIONS)
cv2.putText(frame, f"Sign: {detected_text}", (50, 50),
cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2)
cv2.putText(frame, f"Full Text: {full_text}", (50, 100),
cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2)
ret, buffer = cv2.imencode('.jpg', frame)
yield (b'--frame\r\nContent-Type: image/jpeg\r\n\r\n' + buffer.tobytes() + b'\r\n')
cap.release()
@app.route('/video_feed')
def video_feed():
return Response(generate_frames(), mimetype='multipart/x-mixed-replace; boundary=frame')
@app.route('/detect_sign')
def detect_sign():
global full_text
try:
corrected = " ".join([spell.correction(word) or word for word in full_text.split()])
return jsonify({'text': corrected})
except Exception as e:
return jsonify({'error': str(e)}), 500
@app.route('/stop')
def stop_detection():
global is_running
is_running = False
return jsonify({'status': 'stopped'})
@app.route('/restart')
def restart_detection():
global is_running, detected_text, full_text, last_detection_time
is_running = True
detected_text = ""
full_text = ""
last_detection_time = time.time()
return jsonify({'status': 'restarted'})
@app.route('/speak')
def speak_text():
global full_text
try:
with tts_lock:
engine = pyttsx3.init()
corrected = " ".join([spell.correction(word) or word for word in full_text.split()])
engine.say(corrected)
engine.runAndWait()
engine.stop()
return jsonify({'status': 'spoken'})
except Exception as e:
return jsonify({'error': str(e)}), 500
# HTML Routes (Unchanged)
@app.route('/')
def index():
return render_template("index.html")
@app.route('/model1')
def model1():
return render_template("model1.html")
@app.route('/model11')
def model11():
return render_template("model11.html")
@app.route('/model2')
def model2():
return render_template("model2.html")
@app.route('/about')
def about():
return render_template('about.html')
@app.route('/contact')
def contact():
return render_template('contact.html')
@app.route('/register')
def register():
return render_template('register.html')
@app.route('/converter')
def converter():
return render_template("converter.html")
@app.route('/admin')
def admin():
return render_template("admin.html")
if __name__ == '__main__':
app.run(debug=True, threaded=True)