
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.

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.
Hi.
I released new FLAR contents.
This is FLAR + RSS + Matrix like view.
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.
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.
This is my new FLARToolKit demo, Rasengan from NARUTO.
This demo uses Ribbon3D very exciting class.
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.
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")); |
1 | var codeImg:FLARCodeImage = new FLARCodeImage(code, 300, 300); |
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); |