Order of Presentations

Please upload your research essay onto LMS by Thursday March 22 if you haven’t done so already.

Thursday March 22.

Cody, Kelly, Anthony and Mary

Monday March 26.

Beth, Matthew, Adam and Colin

Thursday March 29

Grace, Alex, Varun, Tif and Bron

Monday April 2

Andrew, India, Victor and James

Processing Code for Kinect

import SimpleOpenNI.*;

SimpleOpenNI  context;

void setup()
{
  context = new SimpleOpenNI(this);
   
  // enable depthMap generation 
  context.enableDepth();
  
  // enable camera image generation
  context.enableRGB();
 
  background(200,0,0);
  size(context.depthWidth() + context.rgbWidth() + 10, context.rgbHeight()); 
}

void draw()
{
  // update the cam
  context.update();
  
  // draw depthImageMap
  image(context.depthImage(),0,0);
  
  // draw camera
  image(context.rgbImage(),context.depthWidth() + 10,0);
}