Skip to content

Instantly share code, notes, and snippets.

View Lukse's full-sized avatar

Saulius Lukse Lukse

View GitHub Profile
@Lukse
Lukse / CamTest.pde
Created October 13, 2019 14:44 — forked from companje/CamTest.pde
Kurokesu C1 Pro webcam (with modified firmware) + 1.25mm FishEye lens working in Processing
import processing.video.*;
Capture cam;
void setup() {
size(640, 480, P3D);
cam = new Capture(this, 640, 480, "i Zone 1080p Starvis Camera");
cam.start();
}