Skip to content

Latest commit

 

History

History
42 lines (21 loc) · 1.17 KB

README.md

File metadata and controls

42 lines (21 loc) · 1.17 KB

Facial and object recognition

This project is an implementation of the novel yolov3 architecture in OpenCV.

Output exampe

output image

Prerequisites

You need to first download the yolov3 model weights.

Once installed, place them in the main folder (.../TM)

Installation

pip install -r requirements.txt

Usage

First launch the gui, then select an image/video.

This will create a processed copy of the original file in the same folder as the original was.

Links

Links to read further

  • Ethz paper on non-maximum suppression

  • Link to the explanation of the darknet function

  • Link to a visual representation of haar cascades used in convectional image processing.

Yolov3 Tensorflow implementation

  • Link to the Tensorflow YOLOv3