Update app.py
Browse files
app.py
CHANGED
@@ -111,6 +111,7 @@ def video_frame_callback(frame: av.VideoFrame) -> av.VideoFrame:
|
|
111 |
|
112 |
cv2.putText(img, 'OpenCV', (50,50), font,
|
113 |
fontScale, color, thickness, cv2.LINE_AA)
|
|
|
114 |
|
115 |
result_queue.put(hands)
|
116 |
|
|
|
111 |
|
112 |
cv2.putText(img, 'OpenCV', (50,50), font,
|
113 |
fontScale, color, thickness, cv2.LINE_AA)
|
114 |
+
cv2.putText(img, 'OpenCV', (50, 50), cv2.FONT_HERSHEY_SIMPLEX, 2, (255, 255, 255), 1, cv2.LINE_AA)
|
115 |
|
116 |
result_queue.put(hands)
|
117 |
|