2015-05-01から1ヶ月間の記事一覧

Processingで2台のWebカムをキャプチャ

import processing.video.*; Capture myCapture1; Capture myCapture2; void setup() { size(640*2, 480); myCapture1 = new Capture(this, 640, 480, 30); myCapture2 = new Capture(this, 640, 480, 30); } void draw() { if (myCapture1.available() && m…