liuhui0401 commited on
Commit
b6b32e3
·
verified ·
1 Parent(s): 1157ec3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -15
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
- import os
8
- if os.environ.get("SPACES_ZERO_GPU") is not None:
9
- import spaces
10
- else:
11
- class spaces:
12
- @staticmethod
13
- def GPU(func):
14
- def wrapper(*args, **kwargs):
15
- return func(*args, **kwargs)
16
- return wrapper
17
-
18
- @spaces.GPU
19
- def fake_gpu():
20
- pass
 
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 进行手势检测。