Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am gaboose on github.
  • I am gaboose (https://keybase.io/gaboose) on keybase.
  • I have a public key ASDBUWO9xYjY7BI6pcKvP7Ihb_HoK8U-tkDyVuaCa3hRzgo

To claim this, I am signing this object:

package main
import (
"fmt"
"net"
"os"
"strings"
)
func main() {
@Gaboose
Gaboose / motion-stabilizer.py
Created April 5, 2012 04:37
SimpleCV example - Motion Stabilizer
from SimpleCV import *
import time
def tupleize(iterable):
result = []
for index in xrange(len(iterable)):
result.append((iterable[index][0], iterable[index][1]))
return result
def adjustCoords(x, y, width, height, cc):