File size: 10,312 Bytes
daa1383
e93d662
daa1383
 
0135475
daa1383
 
0135475
daa1383
 
 
e93d662
daa1383
 
 
 
 
 
 
e93d662
daa1383
e93d662
 
 
 
daa1383
e93d662
daa1383
e93d662
daa1383
e93d662
daa1383
 
 
 
 
 
 
 
 
 
 
 
 
 
e93d662
daa1383
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e93d662
daa1383
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0135475
e93d662
 
daa1383
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388cdbc
daa1383
 
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
from ultralytics import YOLO
import time
import numpy as np
import mediapipe as mp

import uvicorn
from socketio import ASGIApp

import cv2
from flask import Flask, render_template, request, Response, session, redirect, url_for
from flask import Flask, render_template

from flask_socketio import SocketIO
from flask_socketio import emit
from flask_cors import CORS

from flask_socketio import SocketIO
import yt_dlp as youtube_dl
import uvicorn

model_object_detection = YOLO("bisindov2.pt")




app = Flask(__name__)

socketio = SocketIO(app, cors_allowed_origins="*")

CORS(app)

app.secret_key = 'flask-sockets-builds'


@socketio.on('image')
def handle_image(image_data):
    # Process the received image data
    # Here, you can save the image, perform analysis, etc.
    # For demonstration purposes, let's just print the length of the image data
    print("Received image data length:", len(image_data))

    # Send a response back to the client
    # You can send any data you want back to the client
    response_data = {'status': 'success'}
    socketio.emit('response_back', response_data)
    
######################################################
classes_translation = {
    "all": "الكل",
    "A": "أ",
    "B": "ب",
    "C": "ج",
    "D": "د",
    "F": "ف",
    "H": "هـ",
    "I": "أنا",
    "J": "جيم",
    "L": "إل",
    "M": "إم",
    "O": "أو",
    "R": "ر",
    "T": "ت",
    "U": "يو",
    "V": "في",
    "W": "دبليو",
    "Z": "زد",
    "additional": "إضافي",
    "alcohol": "مدرسة",
    "allergy": "حساسية",
    "bacon": "لحم المقدد",
    "bag": "حقيبة",
    "barbecue": "شواء",
    "bill": "فاتورة",
    "biscuit": "بسكويت",
    "bitter": "مر",
    "bread": "خبز",
    "burger": "برغر",
    "bye": "وداعاً",
    "cheese": "جبن",
    "chicken": "دجاج",
    "coke": "كوكاكولا",
    "cold": "بارد",
    "cost": "تكلفة",
    "coupon": "كوبون",
    "cup": "كوب",
    "dessert": "حلوى",
    "drink": "شراب",
    "drive": "قيادة",
    "eat": "تناول الطعام",
    "eggs": "بيض",
    "enjoy": "استمتع",
    "fork": "شوكة",
    "french fries": "بطاطس مقلية",
    "fresh": "طازج",
    "hello": "مرحبا",
    "hot": "ساخن",
    "icecream": "آيس كريم",
    "ingredients": "مكونات",
    "juicy": "عصيري",
    "ketchup": "كاتشب",
    "lactose": "لاكتوز",
    "lettuce": "خس",
    "lid": "غطاء",
    "manager": "مدير",
    "menu": "قائمة الطعام",
    "milk": "حليب",
    "mustard": "خردل",
    "napkin": "منديل",
    "no": "لا",
    "order": "طلب",
    "pepper": "فلفل",
    "pickle": "مخلل",
    "pizza": "بيتزا",
    "please": "من فضلك",
    "ready": "جاهز",
    "refill": "إعادة ملء",
    "repeat": "كرر",
    "safe": "آمن",
    "salt": "ملح",
    "sandwich": "ساندويتش",
    "sauce": "صلصة",
    "small": "صغير",
    "soda": "صودا",
    "sorry": "آسف",
    "spicy": "حار",
    "spoon": "ملعقة",
    "straw": "قش",
    "sugar": "سكر",
    "sweet": "حلو",
    "tissues": "مناديل",
    "total": "مجموع",
    "urgent": "عاجل",
    "vegetables": "خضروات",
    "warm": "دافئ",
    "water": "ماء",
    "what": "ماذا",
    "yoghurt": "زبادي",
    "your": "لك",
    "ILoveYou":"أحبك",
    "Halo":"مرحبًا"
    }
######################################################
class VideoStreaming(object):
    def __init__(self):
        super(VideoStreaming, self).__init__()
        print ("===== Video Streaming =====")
        self._preview = False
        self._flipH = False
        self._detect = False
        self._model = False
        self._mediaPipe = False
        self._confidence = 75.0
        self.mp_hands = mp.solutions.hands
        self.hands = self.mp_hands.Hands()

    @property
    def confidence(self):
        return self._confidence

    @confidence.setter
    def confidence(self, value):
        self._confidence = int(value)

    @property
    def preview(self):
        return self._preview

    @preview.setter
    def preview(self, value):
        self._preview = bool(value)

    @property
    def flipH(self):
        return self._flipH

    @flipH.setter
    def flipH(self, value):
        self._flipH = bool(value)

    @property
    def detect(self):
        return self._detect

    @detect.setter
    def detect(self, value):
        self._detect = bool(value)

    @property
    def mediaPipe(self):
        return self._mediaPipe

    @mediaPipe.setter
    def mediaPipe(self, value):
        self._mediaPipe = bool(value)

    def show(self, url):
        print(url)
        self._preview = False
        self._flipH = False
        self._detect = False
        self._mediaPipe = False

        self._confidence = 75.0
        ydl_opts = {
            "quiet": True,
            "no_warnings": True,
            "format": "best",
            "forceurl": True,
        }

        if url == '0':
            cap = cv2.VideoCapture(0)
        else:
            
            ydl = youtube_dl.YoutubeDL(ydl_opts)

            info = ydl.extract_info(url, download=False)
            url = info["url"]

            cap = cv2.VideoCapture(url)

        while True:
            if self._preview:
                if stop_flag:
                    print("Process Stopped")
                    return

                grabbed, frame = cap.read()
                if not grabbed:
                    break
                if self.flipH:
                    frame = cv2.flip(frame, 1)

                if self.detect:
                    frame_yolo = frame.copy()
                    results_yolo = model_object_detection.predict(frame_yolo, conf=self._confidence / 100)

                    frame_yolo, labels = results_yolo[0].plot()
                    list_labels = []
                    # labels_confidences

                    for label in labels:
                        confidence = label.split(" ")[-1]
                        label_name = " ".join(label.split(" ")[:-1])
                        # Translate the label if it exists in the translation dictionary
                        translated_label = classes_translation.get(label_name, label_name)
                        list_labels.append(translated_label)
                        list_labels.append(confidence)
                        socketio.emit('label', list_labels)

                if self.mediaPipe:
                    # Convert the image to RGB for processing with MediaPipe
                    image = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
                    results = self.hands.process(image)
                    
                    if results.multi_hand_landmarks:
                        for hand_landmarks in results.multi_hand_landmarks:
                            mp.solutions.drawing_utils.draw_landmarks(
                                frame,
                                hand_landmarks,
                                self.mp_hands.HAND_CONNECTIONS,
                                landmark_drawing_spec=mp.solutions.drawing_utils.DrawingSpec(color=(255, 0, 0), thickness=4, circle_radius=3),
                                connection_drawing_spec=mp.solutions.drawing_utils.DrawingSpec(color=(255, 255, 255), thickness=2, circle_radius=2), 
                            )

                frame = cv2.imencode(".jpg", frame)[1].tobytes()
                yield ( 
                    b'--frame\r\n'
                    b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n'
                )
            else:
                snap = np.zeros((
                    1000,
                    1000
                ), np.uint8)
                label = "Streaming Off"
                H, W = snap.shape
                font = cv2.FONT_HERSHEY_PLAIN
                color = (255, 255, 255)
                cv2.putText(snap, label, (W//2 - 100, H//2),
                            font, 2, color, 2)
                frame = cv2.imencode(".jpg", snap)[1].tobytes()
                yield (b'--frame\r\n'
                       b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')


# check_settings()
VIDEO = VideoStreaming()


@app.route('/', methods=['GET', 'POST'])
def homepage():
    return render_template('hompage.html')


@app.route('/index', methods=['GET', 'POST'])
def index():
    print("index")
    global stop_flag
    stop_flag = False
    if request.method == 'POST':
        print("Index post request")
        url = request.form['url']
        print("index: ", url)
        session['url'] = url
        return redirect(url_for('index'))
    return render_template('index.html')

@app.route('/video_feed')
def video_feed():
    url = session.get('url', None)
    print("video feed: ", url)
    if url is None:
        return redirect(url_for('homepage'))
    print("video feed: ", url)
    return Response(VIDEO.show(url), mimetype='multipart/x-mixed-replace; boundary=frame')

# * Button requests
@app.route("/request_preview_switch")
def request_preview_switch():
    VIDEO.preview = not VIDEO.preview
    print("*"*10, VIDEO.preview)
    return "nothing"

@app.route("/request_flipH_switch")
def request_flipH_switch():
    VIDEO.flipH = not VIDEO.flipH
    print("*"*10, VIDEO.flipH)
    return "nothing"

@app.route("/request_run_model_switch")
def request_run_model_switch():
    VIDEO.detect = not VIDEO.detect
    print("*"*10, VIDEO.detect)
    return "nothing"

@app.route("/request_mediapipe_switch")
def request_mediapipe_switch():
    VIDEO.mediaPipe = not VIDEO.mediaPipe
    print("*"*10, VIDEO.mediaPipe)
    return "nothing"

@app.route('/update_slider_value', methods=['POST'])
def update_slider_value():
    slider_value = request.form['sliderValue']
    VIDEO.confidence = slider_value
    return 'OK'

@app.route('/stop_process')
def stop_process():
    print("Process stop Request")
    global stop_flag
    stop_flag = True
    return 'Process Stop Request'

@socketio.on('connect')
def test_connect():
    print('Connected')
    #emit('message', data, broadcast=True)


if __name__ == '__main__':
    socketio.run(app, host="0.0.0.0", allow_unsafe_werkzeug=True,port=7860)