SD Hacks 2016
Given a football video stream, track the receiver and draw his path.
##Our algorithm
- Run k-means on RGB to separate green grass and colored players
- Run k-means on spatial coordinate to distinguish players
- Draw rectangles around them
- Use Camshift to track movements through time in video (need OpenCV library)
- Connect the dots and formuate the path
Setting up OpenCV: http://www.pyimagesearch.com/2015/06/29/install-opencv-3-0-and-python-3-4-on-osx/