├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── config ├── config_arcface.txt ├── config_pipeline.toml ├── config_retinaface.txt ├── config_tracker_NvDCF_perf.yml ├── config_tracker_perf.txt └── config_yolov8n_face.txt ├── data ├── faces │ └── readme ├── features │ └── readme ├── known_faces │ ├── Chandler.npy │ ├── Chandler.png │ ├── Monica.npy │ ├── Monica.png │ ├── Phoebe.npy │ ├── Phoebe.png │ ├── Rachel.npy │ ├── Rachel.png │ ├── Ross.npy │ └── Ross.png └── media │ └── friends_s1e1_cut.mp4 ├── docker-compose.yml ├── main.py ├── models ├── arcface │ └── readme ├── retinaface │ ├── labels.txt │ └── nvdsinfer_customparser │ │ ├── Makefile │ │ ├── README │ │ └── nvdsparse_retinaface.cpp └── yolov8n_face │ ├── labels.txt │ └── nvdsinfer_custom_impl_Yolo │ ├── Makefile │ └── nvdsparsebbox_Yolo.cpp ├── requirements.txt └── utils ├── bus_call.py ├── gen_feature.py ├── parser_cfg.py └── probe.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/README.md -------------------------------------------------------------------------------- /config/config_arcface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/config/config_arcface.txt -------------------------------------------------------------------------------- /config/config_pipeline.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/config/config_pipeline.toml -------------------------------------------------------------------------------- /config/config_retinaface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/config/config_retinaface.txt -------------------------------------------------------------------------------- /config/config_tracker_NvDCF_perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/config/config_tracker_NvDCF_perf.yml -------------------------------------------------------------------------------- /config/config_tracker_perf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/config/config_tracker_perf.txt -------------------------------------------------------------------------------- /config/config_yolov8n_face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/config/config_yolov8n_face.txt -------------------------------------------------------------------------------- /data/faces/readme: -------------------------------------------------------------------------------- 1 | face images -------------------------------------------------------------------------------- /data/features/readme: -------------------------------------------------------------------------------- 1 | feature save dir 2 | -------------------------------------------------------------------------------- /data/known_faces/Chandler.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Chandler.npy -------------------------------------------------------------------------------- /data/known_faces/Chandler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Chandler.png -------------------------------------------------------------------------------- /data/known_faces/Monica.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Monica.npy -------------------------------------------------------------------------------- /data/known_faces/Monica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Monica.png -------------------------------------------------------------------------------- /data/known_faces/Phoebe.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Phoebe.npy -------------------------------------------------------------------------------- /data/known_faces/Phoebe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Phoebe.png -------------------------------------------------------------------------------- /data/known_faces/Rachel.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Rachel.npy -------------------------------------------------------------------------------- /data/known_faces/Rachel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Rachel.png -------------------------------------------------------------------------------- /data/known_faces/Ross.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Ross.npy -------------------------------------------------------------------------------- /data/known_faces/Ross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/known_faces/Ross.png -------------------------------------------------------------------------------- /data/media/friends_s1e1_cut.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/data/media/friends_s1e1_cut.mp4 -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/main.py -------------------------------------------------------------------------------- /models/arcface/readme: -------------------------------------------------------------------------------- 1 | arcface model -------------------------------------------------------------------------------- /models/retinaface/labels.txt: -------------------------------------------------------------------------------- 1 | face 2 | null 3 | -------------------------------------------------------------------------------- /models/retinaface/nvdsinfer_customparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/models/retinaface/nvdsinfer_customparser/Makefile -------------------------------------------------------------------------------- /models/retinaface/nvdsinfer_customparser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/models/retinaface/nvdsinfer_customparser/README -------------------------------------------------------------------------------- /models/retinaface/nvdsinfer_customparser/nvdsparse_retinaface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/models/retinaface/nvdsinfer_customparser/nvdsparse_retinaface.cpp -------------------------------------------------------------------------------- /models/yolov8n_face/labels.txt: -------------------------------------------------------------------------------- 1 | face 2 | -------------------------------------------------------------------------------- /models/yolov8n_face/nvdsinfer_custom_impl_Yolo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/models/yolov8n_face/nvdsinfer_custom_impl_Yolo/Makefile -------------------------------------------------------------------------------- /models/yolov8n_face/nvdsinfer_custom_impl_Yolo/nvdsparsebbox_Yolo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/models/yolov8n_face/nvdsinfer_custom_impl_Yolo/nvdsparsebbox_Yolo.cpp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/bus_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/utils/bus_call.py -------------------------------------------------------------------------------- /utils/gen_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/utils/gen_feature.py -------------------------------------------------------------------------------- /utils/parser_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/utils/parser_cfg.py -------------------------------------------------------------------------------- /utils/probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouyuchong/face-recognition-deepstream/HEAD/utils/probe.py --------------------------------------------------------------------------------