Archive for the ‘FLARToolKit’ Category

Multi Marker Test.

Tuesday, March 16th, 2010

Multi Marker

Hi.
I released example of multi marker for FLARToolKit.
Check it out!

Creating multi marker is very difficult.

Source code is here.

caution:You need a webcam to play this contents.

(more…)

FLAR + MMD = dancing AR.

Tuesday, February 2nd, 2010

FLARToolKitでMikuMikuDance
Hi.
I released new FLAR contents.
This is demo of FLARToolKit and MMD.
MMD is Japanese application to make dance VOCALOIDs.

Below movie is demo of ARToolKit and MMD.
My contents is FLARToolKit version.

caution:You need a webcam to play this contents.

(more…)

How to make Rectangle Marker

Sunday, December 20th, 2009
rectangle marker sample

Hi.
I released new FLAR contents.
This is sample of using Rectangle marker.

I tell you how to use rectangle marker.

caution:You need a webcam to play this contents.
(more…)

FLAR + RSS + Matrix

Sunday, November 22nd, 2009
FLARSSMatrix

Hi.
I released new FLAR contents.
This is FLAR + RSS + Matrix like view.

caution:You need a webcam to play this contents.

(more…)

Marker”s” Generator Online Released!

Sunday, July 12th, 2009
Marker Generator Online Multi

Hi.
I released new ARToolKit Marker Generator.
It makes you create original markers for ARToolKit.
When this marker detects two or more marker, you can save all markers as a zip file, or save single marker as a *.pat file.

caution:You need a webcam to play this contents.
(more…)

about cube detection algorithm

Wednesday, June 10th, 2009

In previous entry, I made cube marker demo.
This time, I explain the detection procedure of the cube marker, step by step.
(more…)

Cube type Marker in FLAR

Monday, April 6th, 2009

Hi.
Do you know Japanese AR product “Cyber Figure ARis” ?
This uses cube type marker.

And, I mimicked it by FLARToolKit.
I created cube marker FLAR demo.

caution:You need a webcam to play this contents.

(more…)

FLARToolKit demo Rasengan from NARUTO

Monday, March 16th, 2009

This is my new FLARToolKit demo, Rasengan from NARUTO.
This demo uses Ribbon3D very exciting class.

caution:You need a webcam to play this contents.

(more…)

FLARCodeImage:Utility for FLARToolKit

Tuesday, February 3rd, 2009

example that using FLARCodeImage

I made a utility class for FLARToolKit.
FLARCodeImage is a child of Sprite.

This class makes FLARCode an image. And, you can use it as a substitute of the marker.

How to use

  1. Create a instannce of FLARCode and load .pat file.
    1
    2
    3
    4
    5
    6
    
    [Embed(source = "assets/patt.hiro", mimeType = "application/octet-stream")]private var CodeData:Class;
    //...
     
    var code:FLARCode = new FLARCode(16, 16);
    var codeFile:ByteArray = new CodeData() as ByteArray;
    code.loadARPatt(codeFile.readMultiByte(codeFile.length, "shift-jis"));
  2. Create a instance of FLARCodeImage.
    1
    
    var codeImg:FLARCodeImage = new FLARCodeImage(code, 300, 300);
  3. Create a instance of MovieMaterial(Papervision3D’s material classs), and create a instance of Plane using it as material.
    1
    2
    3
    4
    
    var mat:TriangleMaterial = new MovieMaterial(codeImg);
    mat.doubleSided = true;
    var plane:Plane = new Plane(mat, 300, 300, 4, 4);
    this._modelView = new PV3DPanel(this.stage.stageWidth, this.stage.stageHeight, plane);
  4. Use its image as a input for FLARToolKit instead of WebCamera.

FLARToolKit and Papervision3D:coordinate axis

Wednesday, December 24th, 2008

I made FLARToolKit demo that researchs coordiante axis of FLARToolKit and Papervision3D.

(more…)