seret
v0.6.0
Published
Capturing images from USB(UVC) webcam on linux machines
Maintainers
Readme
node-v4l2camera
Capturing images from USB(UVC) webcam on linux machines.
Requirements
- node >= 0.10.x
- video4linux2 headers
- c and c++ compiler with
-std=c11and-std=c++11- gcc >= 4.7
Install
On linux machines:
npm install v4l2camera- package details: https://npmjs.org/package/v4l2camera
Usage
var v4l2camera = require("v4l2camera");
var cam = new v4l2camera.Camera("/dev/video0");
cam.start();
cam.capture(function (success) {
var rgb = cam.toRGB();
require("fs").writeFileSync("result.raw", Buffer(rgb));
cam.stop();
});For more detail see: examples/*.js (required "pngjs" or native "png" modules)
API
Initializing API
var cam = new v4l2camera.Camera(device)cam.formats: Array of available frame formatsvar format = cam.formats[n]format.formatName: Name of pixel format. e.g."YUYV"format.format: ID number of pixel formatformat.width: Frame widthformat.height: Frame heightformat.interval.numeratorandformat.interval.denominator: Capturing interval pernumerator/denominatorseconds (e.g. 30fps is 1/30)
cam.configSet(format): Set capturewidth,height,intervalpernumerator/denominatorsec if the members exist in theformatobjectcam.configGet(): Get aformatobject of current config
Capturing API
cam.start()cam.stop(afterStoped())- call re-
config(format)or re-start()inafterStoped()callback
- call re-
cam.capture(afterCaptured): Do cache a current captured frame- call
cam.toRGB()inafterCaptured(true)callback
- call
cam.toYUYV(): Get the cached frame as 8bit int Array of pixels YUYVYUYV...cam.toRGB(): Get the cached frame as 8bit int Array of pixels RGBRGB...cam.devicecam.widthcam.height
Control API
cam.controls: Array of the control informationcam.controlGet(id): Get int value of the control of theid(id is one of cam.controls[n].id)cam.controlSet(id, value): Set int value of the control of theidvar control = cam.controls[n]: Control speccontrol.id: Controlidfor controlGet and controlSetcontrol.name: Control name stringcontrol.type:"int","bool","button","menu"or other typescontrol.max,control.min,control.step: value should bemin <= vandv <= maxand(v - min) % step === 0control.default: default value of the controlcontrol.flags: Several bool flags of the controlscontrol.menu: Array of items. A control value is the index of the menu item when type is"menu".
Build for Development
On linux machines:
cd myproject
mkdir -p node_modules
cd node_modules
git clone https://github.com/bellbind/node-v4l2camera.git v4l2camera
cd v4l2camera
npm install
cd ../.."build/Release/v4l2camera.node" is exist after the build.
Tested Environments
- Ubuntu raring armhf on BeagleBone Black with USB Buffalo BSW13K10H
- Ubuntu raring amd64 on Acer Aspire One with its screen facecam
Notes
This is a nice resource for understanding how v4l2 works: http://www.jayrambhia.com/blog/capture-v4l2/
