github库地址:
https://github.com/coneypo/Dlib_face_recognition_from_camera.git
需要安装的依赖:
- cv2安装遇到问题,问题拆解,在conda环境中分别安装库:
bash
pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple
bash
pip install opencv-contrib-python -i https://pypi.tuna.tsinghua.edu.cn/simple
我使用的python3.8版本
- dlib安装遇到问题,问题拆解:
bash
#利用镜像下载
pip install cmake -i https://pypi.tuna.tsinghua.edu.cn/simple
bash
pip install boost
来自其他博主的.whl包下载链接:https://pan.baidu.com/s/1Tr9D0XxFmOflc_8AjDRX-A?pwd=ryp4
提取码:ryp4
bash
# 安装.whl包
pip install dlib-19.21.99-cp38-cp38-win_amd64.whl
然后,就可以顺利运行项目了。