Skip to content

Instantly share code, notes, and snippets.

@Lukse
Forked from companje/CamTest.pde
Created October 13, 2019 14:44
Show Gist options
  • Save Lukse/4d9a0974f249f9fddced3bd82fb91284 to your computer and use it in GitHub Desktop.
Save Lukse/4d9a0974f249f9fddced3bd82fb91284 to your computer and use it in GitHub Desktop.
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();
}
void draw() {
if (cam.available() == true) {
cam.read();
}
image(cam, 0, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment