Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 2.12 KB

README.md

File metadata and controls

57 lines (34 loc) · 2.12 KB

Face-Detection-SSD

This repository contains the code for face detection using SSD. This repository detect the face from video and cropped the face. The cropped face will save in the given folder name.!

Project Structure

.
├── ckpt_	               # Weight file
├── images               # Images 
├── input-data           # Input data for detection.
├── Readme               # Readme for Face-detection-SSD
├── requiremnts          # Requirements file for Facenet-detection-SSD

Single Shot Detector - SSD :

Single-shot MultiBox Detector is a one-stage object detection algorithm. This means that, in contrast to two-stage models, SSDs do not need an initial object proposals generation step. This makes it, usually, faster and more efficient than two-stage approaches such as Faster R-CNN, although it sacrifices performance for detection of small objects to gain speed.

Require packages:

virtualenv --python=python3 env_fds

source env_fds/bin/activate

pip install -r requirements.txt

Architecture of SSD :

Single class object detection models will need less learnable features. Less parameters mean that the network will be smaller. Smaller networks run faster because it requires less computations.

alt text

alt text

Result of face detection SSD :

alt text alt text alt text

Cropped faces :

alt text alt text alt text alt text

alt text alt text alt text alt text

Research Paper Reference for this repository:

  1. SSD: Single Shot MultiBox Detector
  2. Blogs links for SSD and images reference
  3. Blogs links for SSD and images reference

TODO