Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Object_Detection_demo_LIVE
This is the code for the "How to do Object Detection with OpenCV" live session by Siraj Raval on Youtube
This is the code for the "How to do Object Detection with OpenCV" live session by Siraj Raval on Youtube.

##Overview
## Overview

This is the code for [this](https://www.youtube.com/watch?v=OnWIYI6-4Ss) video on Youtube by Siraj Raval. We'll use OpenCV to
detect a strawberry in an image. We'll perform a series of operations which i've documented in the code to eventually highlight
detect a strawberry in an image. We'll perform a series of operations which I've documented in the code to eventually highlight
the biggest strawberry in an image and then draw a green circle around it.

##Dependencies
## Dependencies

* openCV
* matplotlib
Expand All @@ -18,7 +18,7 @@ You can use [pip](https://pip.pypa.io/en/stable/) to install any missing depende
[this](http://docs.opencv.org/2.4/doc/tutorials/introduction/table_of_content_introduction/table_of_content_introduction.html)
guide.

##Usage
## Usage

Run
`python demo.py`
Expand All @@ -27,7 +27,7 @@ define the input image name and the output image name. This detection takes a sp
accurate but requires more computation currently. Sometimes you just need to quickly detect an image and don't
mind handcrafted which features to look for.

##Credits
## Credits

Credits for this code go to [alexlouden](https://github.com/alexlouden/strawberries/blob/master/Strawberry%20working.ipynb) i've merely
created a wrapper to get people started.