Skip to content

Instantly share code, notes, and snippets.

View GleasonK's full-sized avatar

Kevin Gleason GleasonK

View GitHub Profile
@GleasonK
GleasonK / detector.py
Created June 12, 2015 22:07
OpenCV Detector
import cv2
class Detector():
def __init__(self, image_name):
self.image_name = image_name # The image file name
self.image = [] # OpenCV image array
self.drawn = 0 # Count of how many detector-boxes have been drawn
self.drawColors = [(255,0,0),(0,255,0),(0,0,255),(255,255,0),(255,0,255),(0,255,255)] #RGB Values
self.path = "xml/" # The path to the haarcascades data xml files
self.rects = [] # Discovered rectangles from Image Analysis
@GleasonK
GleasonK / 01.py
Last active October 18, 2017 23:06
[Blog] DIY Hue Lightbulb with Android Control
#!/usr/bin/python
import time
import RPi.GPIO as GPIO
from pubnub import Pubnub
@GleasonK
GleasonK / 01.html
Last active August 29, 2015 14:21
[Blog] Turn Your Smartphone into an Elegant Gamepad with PubNub and Polymer
<!-- First Import: -->
<link rel="import" href="paper-fab.html">
...
<!-- Then use: -->
<paper-fab icon="send"></paper-fab>
@GleasonK
GleasonK / AtomicNameCSS.html
Created April 18, 2014 17:15
A simple way to use CSS to create an animated atomic orbital logo
<html lang="en-US">
<head>
<!-- <link href="CSSGist.css" rel="stylesheet" type="text/css"> -->
<style>
#orbit-case{
width: 500px;
height:500px;