Mouse testing 1
Mouse testing 2
Mouse testing 3
Mouse testing 4
Mouse testing 5
Mouse drawing 1
Mouse drawing 2
Mouse testing 1
Mouse testing 2
Mouse testing 3
Mouse testing 4
Mouse testing 5
Mouse drawing 1
Mouse drawing 2
The company 3DV Systems claimed to release an affordable 3D depth sensing camera for US$100 in this year.
Microsoft acquired the company and released the project Natal with the 3d camera in XBox 360.
Finally, I put up the documentation and files for the new version of SimpleARToolKit library for Processing. The official page is at http://www.bryanchung.net/?page_id=415.
Enjoy and happy coding.
Here is a trial run of the sample program come with the BazAR software from http://cvlab.epfl.ch/software/bazar/. I took a sample of my staff card and had it tracked and overlaid with a rectangle.
Note the new Microsoft surface multitouch interaction with this spherical display.
Here are recent research and development materials from dbisinteractive.
Multi-touch Table
Flash Augmented Reality Prototype
People everywhere are talking about this one using an ActionScript version of ARToolKit with Papervision3D.
You can check out the live version from http://09.aid-dcc.com/.
This is the first hardcopy Arduino book I find in the market. It is written by Massimo Banzi, one of the founder of Arduino.

Image from oreilly.com
It is a very simple code to try reaching an Internet location and returns if it can be done within a time limit specified in the timeOut variable in ms. It uses the isReachable() method for the InetAddress object instance.
InetAddress ip;
String ipAddr;
int timeOut;
boolean ok;
PFont font;
void setup() {
size(400,400);
smooth();
ipAddr = "www.bryanchung.net";
timeOut = 2000;
ok = false;
noStroke();
font = loadFont("Calibri-32.vlw");
textFont(font);
textAlign(CENTER);
}
void draw() {
background(0);
text(str(ok),width/2,height/2);
}
void mousePressed() {
try {
ip = InetAddress.getByName(ipAddr);
ok = ip.isReachable(timeOut);
}
catch (Exception e) {
e.printStackTrace();
}
}
I started using the Google Code to consolidate all my Processing libraries into a single location at http://code.google.com/u/chungbwc/. No documentation has been done yet.