实时人脸识别使用 SCRFD、ArcFace、ByteTrack 和相似度度量
Face Recognition
Sequence Diagram
conda create -n face-dev python=3.9conda activate face-devpip install torch==1.9.1+cpu torchvision==0.10.1+cpu torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
pip install -r requirements.txtCreate a folder with the folder name being the name of the person
datasets/
├── backup
├── data
├── face_features
└── new_persons
├── name-person1
└── name-person2Add the person's photo in the folder
datasets/
├── backup
├── data
├── face_features
└── new_persons
├── name-person1
│ └── image1.jpg
│ └── image2.jpg
└── name-person2
└── image1.jpg
└── image2.jpgRun to add new persons
python add_persons.pyRun to recognize
python recognize.pyRetinaface
Yolov5-face
SCRFD
ArcFace
ArcFace
ByteTrack
ByteTrack is a simple, fast and strong multi-object tracker.
Cosine Similarity Algorithm
Cosine Similarity Algorithm
暂无开放 Issues,或尚未同步最近议题。