Last active
March 3, 2020 19:45
-
-
Save companje/7fb48a37db841c9e29d354df6dfd2985 to your computer and use it in GitHub Desktop.
Kurokesu C1 Pro webcam cam camera (with modified firmware) + 1.25mm FishEye lens working in Processing
This file contains hidden or 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
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
https://superuser.com/questions/1287366/open-webcam-settings-dialog-in-windows