chore: replace mediapipe with uniface for face detection and recognition
This commit is contained in:
commit
379692f313
2 changed files with 724 additions and 0 deletions
22
pyproject.toml
Normal file
22
pyproject.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
[project]
|
||||
name = "faceblur-poc"
|
||||
version = "0.1.0"
|
||||
description = "Face detection and clustering POC"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"uniface",
|
||||
"numpy",
|
||||
"opencv-python",
|
||||
"scikit-learn",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
faceblur-poc = "faceblur.cli:main"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/faceblur"]
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
Loading…
Add table
Add a link
Reference in a new issue