Spaces:
Sleeping
Sleeping
make images work
Browse files- app.py +1 -1
- requirements.txt +2 -1
app.py
CHANGED
@@ -6,7 +6,7 @@ from face_detection import FaceDetector
|
|
6 |
from mark_detection import MarkDetector
|
7 |
from pose_estimation import PoseEstimator
|
8 |
from utils import refine
|
9 |
-
|
10 |
st.title("Pose Estimation")
|
11 |
|
12 |
# Choose between Image or Video file upload
|
|
|
6 |
from mark_detection import MarkDetector
|
7 |
from pose_estimation import PoseEstimator
|
8 |
from utils import refine
|
9 |
+
from PIL import Image
|
10 |
st.title("Pose Estimation")
|
11 |
|
12 |
# Choose between Image or Video file upload
|
requirements.txt
CHANGED
@@ -1,3 +1,4 @@
|
|
1 |
opencv-python-headless
|
2 |
numpy
|
3 |
-
onnxruntime
|
|
|
|
1 |
opencv-python-headless
|
2 |
numpy
|
3 |
+
onnxruntime
|
4 |
+
pillow
|