Python installation of artificial intelligence recognition face_recognition

Python installation of artificial intelligence recognition face_recognition


 face_recognition building module system environment

  

System Environment

  1. Ubuntu / deepin operating system
  2. Python 3.6
  3. pycharm Development Tools

Development environment configuration, installation of various systems package

Face Detection Based on dlib, dlib rely Boost and cmake

If you want to use in windows dlib is quite troublesome, if you want to save time can be installed in anaconda 

conda install -c conda-forge dlib=19.4
 $ sudo apt-get install build-essential cmake
 $ sudo apt-get install libgtk-3-dev
 $ sudo apt-get install libboost-all-dev

Other important package

$ pip3 install numpy
$ pip3 install scipy
$ pip3 install opencv-python
$ pip3 install dlib

Installation face_recognition

# 安装 face_recognition
$ pip3 install face_recognition
# 安装face_recognition过程中会自动安装 numpy、scipy 等 

 

Installation process is relatively slow, I'm a full installation of more than two hours, of course, with the speed of the network, but there is no error, everything is normal!

 

Amway give you a few good blog and github project:

Face Recognition Face recognition based Python library at the following address on GitHub: https://github.com/ageitgey/face_recognition
Github Face Recognition Project Address: https://github.com/MiChongGET/face_collection
Face_recognition under Ubuntu using face recognition: https://www.cnblogs.com/spyplus/p/7829772.html
Face recognition technology face_recognition Python modules: https://blog.csdn.net/qq_31673689/article/details/79370412

 

Published 118 original articles · won praise 123 · views 60000 +

Guess you like

Origin blog.csdn.net/weixin_42776111/article/details/104472470