Create pose_estimation.py
Browse files- pose_estimation.py +9 -0
pose_estimation.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class PoseEstimator:
|
| 2 |
+
def __init__(self):
|
| 3 |
+
self.tracking_points = {
|
| 4 |
+
"movement": ["hips", "legs", "butt"],
|
| 5 |
+
"posture": ["back", "shoulders", "neck"],
|
| 6 |
+
"flow": ["full_body", "transitions"]
|
| 7 |
+
"type": ["strip_tease","booty_shake","lingerie"]
|
| 8 |
+
}
|
| 9 |
+
|