Daily Creative Coding

元「30 min. Processing」。毎日、Creative Codingします。

2015-11-08から1日間の記事一覧

カメラ映像に残像を入れる

/** * Slow Shutter Video * * @author aa_debdeb * @date 2015/11/08 */ import processing.video.*; Capture camera; color[][] previousPixels; int frames = 20; void setup(){ size(640, 480); camera = new Capture(this, width, height); camera.star…