2016年10月27日 星期四

20161027 小楓兒筆記

1. WebCam

2. Camera Calibration 攝影機校正

3. AR

    2000年Magic Book

    Invisible train paper
    http://www.unfoldingleadership.com/downloads/MagicBook.pdf

 
    invisible train
    

    ARToolkit paper
    http://dl.acm.org/citation.cfm?id=1186168

    ARToolkit(maker正方形黑白程式)
    
 
    虛擬傢俱擺設設計系統
    http://www.cce.mcu.edu.tw/project/data/97/22/index.html

    Augmented Reality Demo
    https://www.youtube.com/watch?v=oH_LfXnklRw

    IKEA 2016 Catalogue: Augmented Reality
    https://www.youtube.com/watch?v=xC6t2eEPkPc

    Place IKEA furniture in your home with augmented reality

    
4. Holoportation
    https://www.youtube.com/watch?v=7d59O6cfaM0
    用架設不同角度位子的攝影機,拍攝產生3D立體感(3D網格資訊)

   teleport
   

   Chessboard
 


5.實作:拿金幣

papAR
https://github.com/poqudrof/PapAR/blob/master/data/markers/A3-small1.svg

下載video
開processing→Sketch(速寫本)→Import Library(引用庫文件)→Add Library(添加庫文件)→搜尋video→選擇processing video安裝

開影片範例檔
file(文件)→Examples(範例程序)→Libraries→Video→Capture→AsciiVideo





import processing.video.*;
Capture video;
void setup(){
  size(640,480);
  video=new Capture(this,640,480);
  video.start();
}
void draw(){
  //video.read(); //會顫抖所以才有下面的captureEvent去解決
  image(video,0,0);
}
void captureEvent(Capture c){
  c.read();
}



*因為processing內建沒有AR檔案,所以要從網路下載
Google搜尋processing library ar
https://forum.processing.org/two/discussion/12341/new-augmented-reality-library
→拉到最下面的網址連結
    https://github.com/poqudrof/PapAR
→點選wiki下載 link: PapAR with Depedencies
    https://github.com/poqudrof/PapAR/wiki/Quick-start
→解壓縮檔案→複製libraries裡的檔案(除了video檔)到原檔案的libraries(文件裡)

開AR範例檔做設定(可參考下載網址教學)
file(文件)→Examples(範例程序)→Libraries→Conrtibuted Libraries→PapAR→paperCalibration→PCConfiguration

設定好後開
Conrtibuted Libraries→PapAR→paperExamples→PaperApp2D

***測試結果失敗



6. Leap Motion
  安裝驅動程式: https://www.leapmotion.com/setup

  Introducing the Leap Motion  https://www.youtube.com/watch?v=_d6KuiuteIA

  Magic Leap Demo
  https://www.youtube.com/watch?v=kw0-JRa9n94



*procexp(Microsoft找病毒程式)
https://technet.microsoft.com/en-us/sysinternals/processexplorer.aspx
用炸彈去炸詭異的訊息,就會顯示是哪個軟體在運作

沒有留言:

張貼留言