Recent Changes - Search:

edit SideBar

cameras Module

This module provides an interface to built-in and USB cameras on the host that runs the module.

See also the auto-generated doc file for the current version of the Ptolemy II/Nashorn host implementation of this module.

Functions

The following functions are implemented by this module:

  • cameras(): Return an array of camera names for cameras currently available on the current host, or null if there are no cameras. This array includes a special name "default camera", which represents the system default camera, if there is one.
  • defaultCamera(): Return the name of the default camera on the current host, or null if there is none.
  • Camera(name): Constructor for a Camera object. The optional argument is the camera name, which is required to be one of the names returned by by the cameras() function above. If no name is given, then the default camera will be used. The returned object has the following member functions:
    • close(): Close the camera, stopping any image acquisition.
    • getViewSize(): Return the current view size for this camera, an object with a "width" and "height" field, as in {"width":176, "height":144}.
    • on(event, handler): Invoke the specified handler when the specified event occurs.
    • open(): Open the camera, initiating emission of the 'image' event each time the camera obtains a new image.
    • once(event, handler): Invoke the specified handler once when the specified event occurs.
    • setViewSize(size): Set the current view size for this camera. The argument can either be a JSON string or an object with a width and height field, as in for example {"width":176, "height":144}.
    • snapshot(): Return the most recently acquired image from the camera.
    • viewSizes(): Return an array of view sizes supported by this camera, each given as a JSON string of the form '{"width":176, "height":144}', for example.

This implementation uses the event emitter pattern common in JavaScript. The events emitted by this object include:

  • closed: Emitted whenever the camera is closed.
  • image: Emitted whenever a new image is captured by the camera. The handler will be passed the image as an argument.
  • opened: Emitted whenever a the camera has been opened, so image events will start being sent.

Usage

To capture a single image from the default camera, you can do this:

   var cameras = require("cameras");
   var camera = new cameras.Camera();
   camera.open();
   var image = camera.snapshot();
   camera.close();

The image will be a binary object. On a reasonable host implementation, this object can be sent to an output port displayed or otherwise further processed. To capture every image from the camera, you can do this:

   var cameras = require("cameras");
   var camera = new cameras.Camera();
   camera.on('image', function(image) { ... handle the image ... });
   camera.open();
   ...
   camera.close();

Open Issues: Browser Host

The browser handles video using a <video> HTML element. This is different from Cape Code in some ways:

  • Source, display combined: The <video> element acts as both a source and display. So, in a way, the accessor is outputting to itself? The accessor also can generate an image on the output port.
  • Audio, video combined: Audio and video can be accessed through the same HTML element. Therefore the audio and camera modules might be combined in the browser host.
  • Stream output?: Is it useful for the accessor to offer a stream output in addition to an image output?
  • User chooses camera: The user ultimately picks the camera in a pop-up dialog. This affects the constructor - any name passed in could be ignored.
  • View sizing is not guaranteed: The user can request a view size, but the browser might not provide exactly that size.
  • Browser compatibility: getUserMedia appears to not be supported in Safari. Is there a workaround?

See Also


Back to Optional JavaScript Modules

Edit - History - Print - Recent Changes - Search
Page last modified on February 14, 2017, at 05:53 PM