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
// Processingでカメラの映像を遅延させるサンプル | |
// 遅延分の画像をPGraphicsの配列で保持しておくのがポイント | |
// カメラの映像を扱うためのライブラリをインポート | |
import processing.video.*; | |
// カメラ | |
Capture cam; | |
// 保持する枚数 |
OlderNewer