Camera Control
Last updated on May 7, 2023 pm
[TOC]
Interfaces
1 |
|
Drivers
- Video4Linux
- V4L for short, is a collection of device drivers and an API for supporting realtime video capture on Linux systems.
- v4l2-ctl
sudo v4l2-ctl -d /dev/video0 --list-formats-ext
- Firewire
- UVC (USB Video Class)
- libuvc_camera (ROS Wiki)
- saki4510t/UVCCamera: library and sample to access to UVC web camera on non-rooted Android device
Viewer/Controller
- Webcam Test (Online)
- Turn Camera On (Online)
- Coriander is the Linux graphical user interface (GUI) for controlling a Digital Camera through the IEEE1394 bus (aka FireWire, or iLink).
- luvcview: Sdl video Usb Video Class grabber
- GTK+ UVC Viewer
- guvcview
- cheese: Take photos and videos with your webcam, with fun graphical effects
- eog: a GNOME image viewer
- Motion: a highly configurable program that monitors video signals from many types of cameras
- mjpg-streamer
- Video Capture Tools (Windows)
with Arduino
- ArduCam
- Visual Capturing with OV7670 on Arduino
- A Guide to Arduino Based Video Camera
- alchitry camera tutorial
Others
- Linux and webcams
- How to Operate Your Spycams with ZoneMinder on Linux (part 1)
- Webcam Capture: Generic Webcam Java API
- Set up a Webcam with Linux
- Accessing the Video Device
- Create Video Device ( /dev/video1 )
1
2
3sudo mknod /dev/video1 c 81 1
sudo chmod 666 /dev/video1
sudo chgrp video /dev/video1
Camera Control
https://cgabc.xyz/posts/57a09717/