This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="vid-box"></div> | |
| <div id="vid-thumb"></div> | |
| <form name="loginForm" id="login" action="#" onsubmit="return login(this);"> | |
| <input type="text" name="username" id="username" placeholder="Pick a username!" /> | |
| <input type="submit" name="login_submit" value="Log In"> | |
| </form> | |
| <form name="callForm" id="call" action="#" onsubmit="return makeCall(this);"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="vid-box"></div> | |
| <form name="loginForm" id="login" action="#" onsubmit="return login(this);"> | |
| <input type="text" name="username" id="username" placeholder="Pick a username!" /> | |
| <input type="submit" name="login_submit" value="Log In"> | |
| </form> | |
| <form name="callForm" id="call" action="#" onsubmit="return makeCall(this);"> | |
| <input type="text" name="number" placeholder="Enter user to dial!" /> | |
| <input type="submit" value="Call"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="import" href="paper-fab"> | |
| ... | |
| <paper-fab icon="send"></paper-fab> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| import time | |
| import RPi.GPIO as GPIO | |
| from pubnub import Pubnub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- First Import: --> | |
| <link rel="import" href="paper-fab.html"> | |
| ... | |
| <!-- Then use: --> | |
| <paper-fab icon="send"></paper-fab> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html lang="en-US"> | |
| <head> | |
| <!-- <link href="CSSGist.css" rel="stylesheet" type="text/css"> --> | |
| <style> | |
| #orbit-case{ | |
| width: 500px; | |
| height:500px; |
NewerOlder