Skip to content

Instantly share code, notes, and snippets.

View Krb686's full-sized avatar

Kevin Briggs Krb686

  • Manassas, Virginia
View GitHub Profile
@Krb686
Krb686 / simpleLaserTracking
Created December 12, 2014 13:51
Python Webcam Laser Tracking
from PIL import Image
import psyco
class Tracker(object):
def __init__(self):
psyco.full()
self.createVariables()
def createVariables(self):
pass
def track(self, image):