Last active
February 3, 2016 07:15
-
-
Save nappa7878/3d2c647026a91f713c75 to your computer and use it in GitHub Desktop.
ARサンプル1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************** | |
* AR勉強会 サンプル1 | |
* | |
* Processing2.2.1 with nyar4psg 2.1.0 | |
* | |
* Hiroyuki Nakano | |
* 2015.2.3 | |
*****************************************/ | |
import processing.video.*; | |
import jp.nyatla.nyar4psg.*; | |
Capture cam; | |
MultiMarker nya; | |
void setup() { | |
size(640, 480, P3D); | |
colorMode(RGB, 255); | |
cam=new Capture(this, 640, 480); | |
nya=new MultiMarker(this, width,height, "camera_para.dat", NyAR4PsgConfig.CONFIG_PSG); | |
nya.addARMarker("patt.hiro", 80); // hiroマーカーを使う(マーカー設定番号は 0 になる) | |
cam.start(); | |
} | |
void draw(){ | |
// カメラが使用不可なら処理をしない | |
if (cam.available() !=true) { | |
return; | |
} | |
// カメラが使用可能なら以下の処理をする | |
cam.read(); | |
nya.detect(cam); | |
background(0); | |
nya.drawBackground(cam); | |
// マーカーが見つかったとき | |
if((nya.isExistMarker(0))){ // カッコ内の 0 はマーカー設定番号 | |
nya.beginTransform(0); // マーカー設定番号 0 の位置を基準 | |
fill(0, 0, 255); // 塗り色を青 | |
translate(0, 0, 20); // Z軸方向に20移動 | |
box(40, 40, 40); // 一辺40の立方体を表示 | |
nya.endTransform(); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment