Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,21 +3,22 @@ import cv2
|
|
3 |
from gradio_webrtc import WebRTC
|
4 |
import mediapipe as mp
|
5 |
import time
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
21 |
|
22 |
# 初始化 MediaPipe Hands
|
23 |
mp_hands = mp.solutions.hands
|
@@ -34,6 +35,7 @@ rtc_configuration = {
|
|
34 |
last_process_time = time.time()
|
35 |
|
36 |
# 手势检测函数
|
|
|
37 |
def detection(image, conf_threshold=0.5):
|
38 |
"""
|
39 |
使用 MediaPipe Hands 进行手势检测。
|
|
|
3 |
from gradio_webrtc import WebRTC
|
4 |
import mediapipe as mp
|
5 |
import time
|
6 |
+
import spaces
|
7 |
+
|
8 |
+
# import os
|
9 |
+
# if os.environ.get("SPACES_ZERO_GPU") is not None:
|
10 |
+
# import spaces
|
11 |
+
# else:
|
12 |
+
# class spaces:
|
13 |
+
# @staticmethod
|
14 |
+
# def GPU(func):
|
15 |
+
# def wrapper(*args, **kwargs):
|
16 |
+
# return func(*args, **kwargs)
|
17 |
+
# return wrapper
|
18 |
+
|
19 |
+
# @spaces.GPU
|
20 |
+
# def fake_gpu():
|
21 |
+
# pass
|
22 |
|
23 |
# 初始化 MediaPipe Hands
|
24 |
mp_hands = mp.solutions.hands
|
|
|
35 |
last_process_time = time.time()
|
36 |
|
37 |
# 手势检测函数
|
38 |
+
@spaces.GPU
|
39 |
def detection(image, conf_threshold=0.5):
|
40 |
"""
|
41 |
使用 MediaPipe Hands 进行手势检测。
|