feat: MediaPipe face detection (CORE-235) (#14009)

* Initial mediapipe face detection support

* Update face_geometry.py

* Account for diff sized batch input

* Model folder placeholder
This commit is contained in:
Jukka Seppänen
2026-05-21 02:07:48 +03:00
committed by GitHub
parent a8d2519058
commit 4d6a058bf1
6 changed files with 1298 additions and 0 deletions

View File

@@ -60,6 +60,8 @@ folder_names_and_paths["geometry_estimation"] = ([os.path.join(models_dir, "geom
folder_names_and_paths["optical_flow"] = ([os.path.join(models_dir, "optical_flow")], supported_pt_extensions)
folder_names_and_paths["mediapipe"] = ([os.path.join(models_dir, "mediapipe")], supported_pt_extensions)
output_directory = os.path.join(base_path, "output")
temp_directory = os.path.join(base_path, "temp")
input_directory = os.path.join(base_path, "input")