- leap motion下載安裝 (https://www.leapmotion.com/setup)
- leap motion體驗 (機器人、摘花)
- 紅外線鏡頭、募資平台(自拍桿手機殼)
- processing匯入leap motion
- 使用processing寫出leap motion程式
import de.voidplus.leapmotion.*;
LeapMotion leap;
void setup(){
size(640,480);
leap=new LeapMotion(this);
}
void draw(){
background(240,102,102);
for(Hand hand : leap.getHands()){
hand.draw();
}} - 將資訊隱藏只留手指
import de.voidplus.leapmotion.*;
LeapMotion leap;
void setup(){
size(640,480);
leap=new LeapMotion(this);
}
void draw(){
background(125,187,247);
for(Hand hand : leap.getHands()){
//hand.draw();
for(Finger finger : hand.getFingers()){
finger.draw();
}}} - 接金幣小遊戲
2017年1月16日 星期一
Week9 錡洛誼上課筆記
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言