Update app.py
Browse files
app.py
CHANGED
|
@@ -25,7 +25,7 @@ if uploaded_file is not None:
|
|
| 25 |
mp_hands = mp.solutions.hands
|
| 26 |
|
| 27 |
# Now second step is to set the hands function which will hold the landmarks points
|
| 28 |
-
hands = mp_hands.Hands(static_image_mode=True, max_num_hands=2, min_detection_confidence=0.
|
| 29 |
|
| 30 |
# Last step is to set up the drawing function of hands landmarks on the image
|
| 31 |
mp_drawing = mp.solutions.drawing_utils
|
|
|
|
| 25 |
mp_hands = mp.solutions.hands
|
| 26 |
|
| 27 |
# Now second step is to set the hands function which will hold the landmarks points
|
| 28 |
+
hands = mp_hands.Hands(static_image_mode=True, max_num_hands=2, min_detection_confidence=0.1)
|
| 29 |
|
| 30 |
# Last step is to set up the drawing function of hands landmarks on the image
|
| 31 |
mp_drawing = mp.solutions.drawing_utils
|