https://github.com/prongbang/face_recognition
https://github.com/prongbang/face_recognition
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/prongbang/face_recognition
- Owner: prongbang
- Created: 2018-01-05T04:42:57.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-05T04:58:40.000Z (almost 8 years ago)
- Last Synced: 2025-03-25T22:52:04.347Z (7 months ago)
- Language: Python
- Size: 1.79 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Windows
## Step 1: Install [Python 2.7 or 3.6](https://www.python.org/downloads/)# Mac OSX
## Step 1: Install Homebrew
```
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```## Step 2: Update Homebrew
```
brew update
```## Step 3: Install Python
```
brew install python
```## Step 4: Installing boost
```
brew install boost --with-python
```## Step 5: Installing boost-python
```
brew install boost-python
```## Step 6: Confirm boost and boost-python is installed
```
brew list | grep 'boost'
```
> boost> boost-python
## [Read More...](https://www.pyimagesearch.com/2015/04/27/installing-boost-and-boost-python-on-osx-with-homebrew/)
# How to use ```face_recognition```
### ```pip``` or ```pip2``` for python2
### ```pip3``` for python3## Step 1: Copy image to ```image``` directory
## Step 2: Install OpenCV
```
pip install opencv-python
```## Step 3: Install face_recognition
```
pip install face_recognition
```## Step 4: Run
```
python main.py
```