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); | |
} |
https://superuser.com/questions/1287366/open-webcam-settings-dialog-in-windows
Find the exact name of your device, either from Control Panel | Devices and Printers or by running ffmpeg:
C:\utils>ffmpeg -list_devices true -f dshow -i dummy -hide_banner
[dshow @ 0000022fd7ac8440] DirectShow video devices (some may be both video and audio devices)
[dshow @ 0000022fd7ac8440] "USB 2.0 CAMERA"
Run ffmpeg to show the dialog:ffmpeg -f dshow -show_video_device_dialog true -i video="i Zone 1080p Starvis Camera"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Camera:

https://www.kurokesu.com/shop/CAMERA_C1_PRO
Lens:

https://www.kurokesu.com/shop/lenses/L066-F-1.25-CS
firmware:
backup of Kurokesu firmware: http://companje.nl/tmp/backup-c1-pro.bin
updated firmware + installer: http://companje.nl/tmp/c1-pro-ubuntu-fix.zip
result:
