September 2010
S M T W T F S
« Apr    
 1234
567891011
12131415161718
19202122232425
2627282930  

New SimpleARToolKit Library Available Now

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.

Another demo with the Augmented Reality Library

This one plays back four rectangular planes of digital videos. There are two separate videos loaded and played back.

Flash ActionScript with ARToolKit

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/.

Sample Code for the New Augmented Reality Library

Here is the source code for the last post using the new augmented reality library. In this case, I use the JMyron as the capture mechanism. It displays a short quicktime video “mv02.mov” on top of the marker.

import JMyron.*;
import processing.video.*;
import processing.opengl.*;
import pARToolKit.SimpleARToolKit;

SimpleARToolKit ar;
int capWidth, capHeight;
JMyron m;
Movie mov;
PImage img;

void setup() {
size(400, 300, OPENGL);
[...]

New Augmented Reality Library for Processing

I modify the previous ARToolKit library for Processing. It has a better programming interface and tracking performance. You can choose either to use the Capture object or the JMyron object for the live video. And the canvas size can now be different from the capture size. Have a look of the demonstration video. I’ll send [...]