├── .gitignore ├── 00_material ├── hand-landmarks.png ├── mediapipe_face_landmark_fullsize.png └── pose_landmarks_index.png ├── 01_follow_mouse ├── index.html ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 02_follow_finger ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 03_all_hand_points ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 04_resize_letter ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 05_two_hands ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 06_two_hands_touch ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 07_body_points_jittery ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 08_body_lines_jittery ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 09_face_and_hands ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── test.png ├── 10_body_points_smooth ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js └── style.css ├── 11_body_local_video ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js ├── style.css └── video │ └── source.mp4 ├── 12_body_offline ├── index.html ├── mediaPipe.js ├── mediapipe │ ├── pose_landmarker_full.task │ ├── tasks-vision@0.10.3.js │ └── wasm │ │ ├── vision_wasm_internal.js │ │ └── vision_wasm_internal.wasm ├── p5.js ├── sketch.js └── style.css └── 13_body_points_fallback ├── index.html ├── mediaPipe.js ├── p5.js ├── sketch.js └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/.gitignore -------------------------------------------------------------------------------- /00_material/hand-landmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/00_material/hand-landmarks.png -------------------------------------------------------------------------------- /00_material/mediapipe_face_landmark_fullsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/00_material/mediapipe_face_landmark_fullsize.png -------------------------------------------------------------------------------- /00_material/pose_landmarks_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/00_material/pose_landmarks_index.png -------------------------------------------------------------------------------- /01_follow_mouse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/01_follow_mouse/index.html -------------------------------------------------------------------------------- /01_follow_mouse/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/01_follow_mouse/p5.js -------------------------------------------------------------------------------- /01_follow_mouse/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/01_follow_mouse/sketch.js -------------------------------------------------------------------------------- /01_follow_mouse/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/01_follow_mouse/style.css -------------------------------------------------------------------------------- /01_follow_mouse/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/01_follow_mouse/test.png -------------------------------------------------------------------------------- /02_follow_finger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/02_follow_finger/index.html -------------------------------------------------------------------------------- /02_follow_finger/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/02_follow_finger/mediaPipe.js -------------------------------------------------------------------------------- /02_follow_finger/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/02_follow_finger/p5.js -------------------------------------------------------------------------------- /02_follow_finger/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/02_follow_finger/sketch.js -------------------------------------------------------------------------------- /02_follow_finger/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/02_follow_finger/style.css -------------------------------------------------------------------------------- /02_follow_finger/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/02_follow_finger/test.png -------------------------------------------------------------------------------- /03_all_hand_points/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/03_all_hand_points/index.html -------------------------------------------------------------------------------- /03_all_hand_points/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/03_all_hand_points/mediaPipe.js -------------------------------------------------------------------------------- /03_all_hand_points/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/03_all_hand_points/p5.js -------------------------------------------------------------------------------- /03_all_hand_points/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/03_all_hand_points/sketch.js -------------------------------------------------------------------------------- /03_all_hand_points/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/03_all_hand_points/style.css -------------------------------------------------------------------------------- /03_all_hand_points/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/03_all_hand_points/test.png -------------------------------------------------------------------------------- /04_resize_letter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/04_resize_letter/index.html -------------------------------------------------------------------------------- /04_resize_letter/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/04_resize_letter/mediaPipe.js -------------------------------------------------------------------------------- /04_resize_letter/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/04_resize_letter/p5.js -------------------------------------------------------------------------------- /04_resize_letter/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/04_resize_letter/sketch.js -------------------------------------------------------------------------------- /04_resize_letter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/04_resize_letter/style.css -------------------------------------------------------------------------------- /04_resize_letter/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/04_resize_letter/test.png -------------------------------------------------------------------------------- /05_two_hands/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/05_two_hands/index.html -------------------------------------------------------------------------------- /05_two_hands/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/05_two_hands/mediaPipe.js -------------------------------------------------------------------------------- /05_two_hands/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/05_two_hands/p5.js -------------------------------------------------------------------------------- /05_two_hands/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/05_two_hands/sketch.js -------------------------------------------------------------------------------- /05_two_hands/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/05_two_hands/style.css -------------------------------------------------------------------------------- /05_two_hands/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/05_two_hands/test.png -------------------------------------------------------------------------------- /06_two_hands_touch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/06_two_hands_touch/index.html -------------------------------------------------------------------------------- /06_two_hands_touch/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/06_two_hands_touch/mediaPipe.js -------------------------------------------------------------------------------- /06_two_hands_touch/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/06_two_hands_touch/p5.js -------------------------------------------------------------------------------- /06_two_hands_touch/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/06_two_hands_touch/sketch.js -------------------------------------------------------------------------------- /06_two_hands_touch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/06_two_hands_touch/style.css -------------------------------------------------------------------------------- /06_two_hands_touch/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/06_two_hands_touch/test.png -------------------------------------------------------------------------------- /07_body_points_jittery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/07_body_points_jittery/index.html -------------------------------------------------------------------------------- /07_body_points_jittery/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/07_body_points_jittery/mediaPipe.js -------------------------------------------------------------------------------- /07_body_points_jittery/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/07_body_points_jittery/p5.js -------------------------------------------------------------------------------- /07_body_points_jittery/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/07_body_points_jittery/sketch.js -------------------------------------------------------------------------------- /07_body_points_jittery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/07_body_points_jittery/style.css -------------------------------------------------------------------------------- /07_body_points_jittery/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/07_body_points_jittery/test.png -------------------------------------------------------------------------------- /08_body_lines_jittery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/08_body_lines_jittery/index.html -------------------------------------------------------------------------------- /08_body_lines_jittery/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/08_body_lines_jittery/mediaPipe.js -------------------------------------------------------------------------------- /08_body_lines_jittery/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/08_body_lines_jittery/p5.js -------------------------------------------------------------------------------- /08_body_lines_jittery/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/08_body_lines_jittery/sketch.js -------------------------------------------------------------------------------- /08_body_lines_jittery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/08_body_lines_jittery/style.css -------------------------------------------------------------------------------- /08_body_lines_jittery/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/08_body_lines_jittery/test.png -------------------------------------------------------------------------------- /09_face_and_hands/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/09_face_and_hands/index.html -------------------------------------------------------------------------------- /09_face_and_hands/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/09_face_and_hands/mediaPipe.js -------------------------------------------------------------------------------- /09_face_and_hands/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/09_face_and_hands/p5.js -------------------------------------------------------------------------------- /09_face_and_hands/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/09_face_and_hands/sketch.js -------------------------------------------------------------------------------- /09_face_and_hands/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/09_face_and_hands/style.css -------------------------------------------------------------------------------- /09_face_and_hands/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/09_face_and_hands/test.png -------------------------------------------------------------------------------- /10_body_points_smooth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/10_body_points_smooth/index.html -------------------------------------------------------------------------------- /10_body_points_smooth/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/10_body_points_smooth/mediaPipe.js -------------------------------------------------------------------------------- /10_body_points_smooth/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/10_body_points_smooth/p5.js -------------------------------------------------------------------------------- /10_body_points_smooth/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/10_body_points_smooth/sketch.js -------------------------------------------------------------------------------- /10_body_points_smooth/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/10_body_points_smooth/style.css -------------------------------------------------------------------------------- /11_body_local_video/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/11_body_local_video/index.html -------------------------------------------------------------------------------- /11_body_local_video/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/11_body_local_video/mediaPipe.js -------------------------------------------------------------------------------- /11_body_local_video/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/11_body_local_video/p5.js -------------------------------------------------------------------------------- /11_body_local_video/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/11_body_local_video/sketch.js -------------------------------------------------------------------------------- /11_body_local_video/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/11_body_local_video/style.css -------------------------------------------------------------------------------- /11_body_local_video/video/source.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/11_body_local_video/video/source.mp4 -------------------------------------------------------------------------------- /12_body_offline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/index.html -------------------------------------------------------------------------------- /12_body_offline/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/mediaPipe.js -------------------------------------------------------------------------------- /12_body_offline/mediapipe/pose_landmarker_full.task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/mediapipe/pose_landmarker_full.task -------------------------------------------------------------------------------- /12_body_offline/mediapipe/tasks-vision@0.10.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/mediapipe/tasks-vision@0.10.3.js -------------------------------------------------------------------------------- /12_body_offline/mediapipe/wasm/vision_wasm_internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/mediapipe/wasm/vision_wasm_internal.js -------------------------------------------------------------------------------- /12_body_offline/mediapipe/wasm/vision_wasm_internal.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/mediapipe/wasm/vision_wasm_internal.wasm -------------------------------------------------------------------------------- /12_body_offline/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/p5.js -------------------------------------------------------------------------------- /12_body_offline/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/sketch.js -------------------------------------------------------------------------------- /12_body_offline/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/12_body_offline/style.css -------------------------------------------------------------------------------- /13_body_points_fallback/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/13_body_points_fallback/index.html -------------------------------------------------------------------------------- /13_body_points_fallback/mediaPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/13_body_points_fallback/mediaPipe.js -------------------------------------------------------------------------------- /13_body_points_fallback/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/13_body_points_fallback/p5.js -------------------------------------------------------------------------------- /13_body_points_fallback/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/13_body_points_fallback/sketch.js -------------------------------------------------------------------------------- /13_body_points_fallback/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NahuelGerthVK/bodytracking-p5-mediapipe/HEAD/13_body_points_fallback/style.css --------------------------------------------------------------------------------