David Driscoll
commited on
Commit
·
74d3d77
1
Parent(s):
b37a8e6
Parathesis fix
Browse files
app.py
CHANGED
@@ -66,7 +66,6 @@ def compute_posture_overlay(image):
|
|
66 |
landmarks = []
|
67 |
for lm in pose_results.pose_landmarks.landmark:
|
68 |
landmarks.append((int(lm.x * w), int(lm.y * h)))
|
69 |
-
)
|
70 |
text = "Posture detected"
|
71 |
else:
|
72 |
landmarks = []
|
|
|
66 |
landmarks = []
|
67 |
for lm in pose_results.pose_landmarks.landmark:
|
68 |
landmarks.append((int(lm.x * w), int(lm.y * h)))
|
|
|
69 |
text = "Posture detected"
|
70 |
else:
|
71 |
landmarks = []
|