[ Content | View menu ]

Archive for 'Hubert Weldon'

Further Documentation on final project

December 17, 2008

My initial intentions for my final project was to achieve a real time conversion of video into what would look somewhat like a Kirlian photograph.  Kirlian Photography is accomplished by electrically charging the film  as it is exposed.  It comes in two forms, one which looks like lightning along the exposed edges of a sillouette, [...]

Final Project – Project Documentation, Hubert Weldon - 0 Comments

This is the version of my code that we saw last Wednesday

December 8, 2008

import JMyron.*;
JMyron m;
void setup(){
int w = 640;
int h = 480;
frameRate=30;
size(w,h);
m = new JMyron();
m.start(640,480);
m.findGlobs(1);
println(”Myron ” + m.version());
}
void mousePressed(){
m.settings();
}
void draw(){
m.trackColor(255,255,255,255);
m.update();
int[] img = m.image();
//first draw the camera view onto the screen
loadPixels();
for(int i=0;i<width*height;i++){
pixels[i] = img[i];
}
updatePixels();
background(int(random(5)),int(random(5)),int(random(5)));
//draw edge pixels of globs (this and the next chunks of code are chokers)
int list[][][] = m.globPixels();
stroke(235+int(random(15)),240+int(random(10)),250);
for(int i=0;i<list.length;i++){
int[][] pixellist = list[i];
if(pixellist!=null){
beginShape(POINTS);
for(int j=0;j<pixellist.length;j++){
vertex( pixellist[j][0]  ,  pixellist[j][1] [...]

Final Project – Project Documentation, Hubert Weldon - 0 Comments

Reading Six

November 26, 2008

Hear are the pages for our presentation on Dieter:
http://www2.uic.edu/~koneil2/508/Dieter/etall.html
http://www2.uic.edu/~koneil2/508/Dieter/versus.html
details forthcoming…stay tuned…

Hubert Weldon, Kevin O'Neill, Reading 6 - 0 Comments

This is the first iteration of Kirlian code

import JMyron.*;
JMyron m;
void setup(){
int w = 640;
int h = 480;
size(w,h);
m = new JMyron();
m.start(640,480);
m.findGlobs(1);
println(”Myron ” + m.version());
}
void mousePressed(){
m.settings();
}
void draw(){
m.trackColor(255,255,255,255);
m.update();
int[] img = m.image();
//first draw the camera view onto the screen
loadPixels();
for(int i=0;i<width*height;i++){
pixels[i] = img[i];
}
updatePixels();
background(0,0,0);
//draw edge pixels of globs (this and the next chunks of code are chokers)
int list[][][] = m.globPixels();
stroke(220,220,220);
for(int i=0;i<list.length;i++){
int[][] pixellist = list[i];
if(pixellist!=null){
beginShape(POINTS);
for(int j=0;j<pixellist.length;j++){
vertex( pixellist[j][0]  ,  pixellist[j][1] [...]

Final Project – Project Documentation, Hubert Weldon - 0 Comments

Assignment 01

October 1, 2008

Hey, is there a way of attaching the .pde to these posts?  My code is a little extensive to post here.
Grav

Exercise 1, Hubert Weldon, Tesia Kosmalski - 1 Comments

Time Line

September 24, 2008

This reading was an interesting, if somewhat dry, history of touch and multitouch devices.  Don’t really have much too say past that.  It is worth noting, that our own projection multitouch (the DVL one that is) was made only two years after the first one was made by Andy Wilson.  I was chatting with a [...]

Hubert Weldon, Reading 2: Buxton: Multitouch - 0 Comments

My brain hurts!

September 16, 2008

Ok guys, I read the article and I have to admit a lot of this is old hat.  But then we covered a lot of this in the Spring 2006 class.  Being truthful, I had seen all but one of the pieces in the article before, and while they have deep merit, I didn’t really [...]

Hubert Weldon, Reading 1: Levin: CV for Artists + Designers - 0 Comments