Sombras

Visit my blog

Animating with Kinect

Visit my blog

Augmented Reality

Visit my blog

$$$$$ Cameras

http://itp.nyu.edu/~lfc267/blog/?page_id=256

Strangers

Strangers

Android Camera

Click here to view post

http://itp.nyu.edu/~lfc267/blog/?page_id=256&preview=true&preview_id=256&preview_nonce=b1e820914d

Links to interesting face recognition projects

 

http://www.youtube.com/watch?v=qolfopFii4g

 

http://vimeo.com/29348533

 

http://english.ntdtv.com/ntdtv_en/ns_asia/2010-01-22/038146890461.html

 

http://developkinect.com/news/hacks/pushy-tactile-sonic-interface

 

http://www.datatelling.com/2011/11/16/face-tracking-math-personality-prediction-one-crazy-scienceart-fair-project/

Scream

https://vimeo.com/36672886

Hula

CLICK THE FOLLOWING LINK

http://youtu.be/5vMWzscfK0w

 

import SimpleOpenNI.*; SimpleOpenNI kinect; void setup() { size(640,480); kinect = new SimpleOpenNI(this); kinect.enableDepth(); kinect.enableUser(SimpleOpenNI.SKEL_PROFILE_ALL); }

void draw() { kinect.update();

//vector of ints to store users IntVector userList = new IntVector(); //list of detected users kinect.getUsers(userList); if (userList.size()>0) { int userId = userList.get(0); if(kinect.isTrackingSkeleton(userId)){

PVector torso = new PVector(); float […]

10 Ideas for Kinect

10 ideas for skeleton tracking with the Kinect

1) Change perspective of space in 360 degree view depending on body position. Have ability to touch objects and react when they are touched. 2) Meet yourself 10 second ago/yesterday. 3) Kinect projection mapping onto naked body. The projection shows the linkage between body parts and […]