Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aloiscrr/face-detection-mobilenet
Face detection using tensorflow, keras and MobileNet convolutional networks
https://github.com/aloiscrr/face-detection-mobilenet
keras keras-tensorflow mobilenetv2 tensorflow2
Last synced: about 1 month ago
JSON representation
Face detection using tensorflow, keras and MobileNet convolutional networks
- Host: GitHub
- URL: https://github.com/aloiscrr/face-detection-mobilenet
- Owner: AloisCRR
- Created: 2020-06-29T18:03:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T15:47:04.000Z (over 3 years ago)
- Last Synced: 2024-11-12T14:19:38.849Z (3 months ago)
- Topics: keras, keras-tensorflow, mobilenetv2, tensorflow2
- Language: Jupyter Notebook
- Homepage:
- Size: 367 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic Face Detection with MobileNet CNN
I wanted to learn about different algorithms to make object recognition for a university project so I used TensorFlow and other technologies to make a face recognition algorithm and see if it's possible to implement that on a RPi 4.
## Run Locally
1. Clone the repo:
```bash
git clone https://github.com/AloisCRR/face-detection-mobilenet.git
```2. Go to [Google Colab](https://colab.research.google.com/)
3. Upload the file `face_detection_MobileNet.ipynb`
4. Once notebook is loaded, hit Ctrl + F9 or `Runtime > Run all` to get all the data and test the results.
## Tech Stack
| Name | Description |
| -------------------------------------------------- | ------------------------------------------------- |
| [Google Colab](https://colab.research.google.com/) | Browser python IDE with free access to TPUs, etc. |
| [TensorFlow](https://www.tensorflow.org/learn) | Library to create ML models |
| [Open CV](https://docs.opencv.org/) | Computer vision library |
| [Numpy](https://numpy.org/) | Handle multi-dimensional arrays and matrices |
| [Matplotlib](https://matplotlib.org/) | Data visualization |