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
1> [error] [<0.50.0>] {error_report,<0.24.0>, | |
{<0.50.0>,supervisor_report, | |
[{supervisor,{local,couch_db_update_notifier_sup}}, | |
{errorContext,child_terminated}, | |
{reason,normal}, | |
{offender, | |
[{pid,<0.82.0>}, | |
{name,"indexer"}, | |
{mfa, | |
{couch_db_update_notifier,start_link, |
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
; CouchDB Configuration Settings | |
; Custom settings should be made in this file. They will override settings | |
; in default.ini, but unlike changes made to default.ini, this file won't be | |
; overwritten on server upgrade. | |
[couchdb] | |
;max_document_size = 4294967296 ; bytes | |
os_process_timeout=60000 ; 60 seconds for couchdb-lucene |
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
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384 | |
inet6 ::1 prefixlen 128 | |
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 | |
inet 127.0.0.1 netmask 0xff000000 | |
gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280 | |
stf0: flags=0<> mtu 1280 | |
en0: flags=8822<BROADCAST,SMART,SIMPLEX,MULTICAST> mtu 1500 | |
ether 00:25:4b:c4:a1:5e | |
media: autoselect (<unknown type>) | |
supported media: none autoselect 10baseT/UTP <half-duplex> 10baseT/UTP <full-duplex> 10baseT/UTP <full-duplex,flow-control> 10baseT/UTP <full-duplex,hw-loopback> 100baseTX <half-duplex> 100baseTX <full-duplex> 100baseTX <full-duplex,flow-control> 100baseTX <full-duplex,hw-loopback> 1000baseT <full-duplex> 1000baseT <full-duplex,flow-control> 1000baseT <full-duplex,hw-loopback> |
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
//-------------------------------------------------------------- | |
void KinectThread::setupKinect() { | |
// allocate our images into memory | |
threImg.allocate(CAM_WIDTH, CAM_HEIGHT); | |
depthImage.allocate(CAM_WIDTH, CAM_HEIGHT, OF_IMAGE_GRAYSCALE); | |
depthPixels = new unsigned char[CAM_WIDTH * CAM_HEIGHT]; | |
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
//-------------------------------------------------------------- | |
void LightSource::defineColors() { | |
// create our colors | |
_r1 = 237.0; _g1 = 73.0; _b1 = 197.0; _a1 = globalAlpha; // purpish | |
_r2 = 112.0; _g2 = 223.0; _b2 = 255.0; _a2 = globalAlpha; // blue | |
_r3 = 81.0; _g3 = 219.0; _b3 = 81.0; _a3 = globalAlpha; // new green | |
_r4 = 234.0; _g4 = 255.0; _b4 = 137.0; _a4 = globalAlpha; // new yellow | |
// _r5 = 129.0; _g5 = 170.0; _b5 = 70.0; _a5 = globalAlpha; // green | |
// _r6 = 173.0; _g6 = 194.0; _b6 = 105.0; _a6 = globalAlpha; // dg-ish |
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
const int numReadings = 10; | |
int readings[numReadings]; // the readings from centroid.x | |
int index = 0; // the index of the current reading | |
int total = 0; // the running total | |
int average = 0; // the average | |
int inputPin = A0; | |
void setup() |
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
/*********************************************** | |
Geometry shader to convert lines into triangle strips | |
Memo Akten | |
www.memo.tv | |
modified by: STEADY | |
************************************************/ | |
#version 120 |
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
git submodule update --init --recursive | |
fatal: Needed a single revision | |
Unable to find current revision in submodule path 'External/ofxUX' |
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
_____ _______ ______ _____ __ __ | |
/ ____| |__ __| | ____| /\ | __ \ \ \ / / | |
| (___ | | | |__ / \ | | | | \ \_/ / | |
\___ \ | | | __| / /\ \ | | | | \ / | |
____) | | | | |____ / ____ \ | |__| | | | | |
|_____/ |_| |______| /_/ \_\ |_____/ |_| |
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
# Kinect Frameworks | |
##ofxOpenNI (gameoverhack experimental for autoskeleton) | |
git clone https://github.com/gameoverhack/ofxOpenNI | |
git checkout experimental | |
##ofxOpenNI2 (arturoc) | |
git clone https://github.com/arturoc/ofxOpenNI2.git | |
##ofxKinect (theo) |
OlderNewer