Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 |