Comments on this document are welcomed.
This document specific the takePhoto() and grabFrame() methods, and corresponding camera settings for use with MediaStreams as defined in Media Capture and Streams [[!GETUSERMEDIA]].
Introduction ------------

The API defined in this document taks a valid MediaStream and returns an encoded image in the form of a Blob (as defined in [[!FILE-API]]). The image is provided by the capture device that provides the MediaStream. Moreover, picture-specific settings can be optionally provided as arguments that can be applied to the image being captured.

Image Capture API --------------

The User Agent must support Promises in order to implement the Image Capture API. Any Promise object is assumed to have resolver object, with resolve() and reject() methods associated with it. The MediaStreamTrack passed to the constructor must have its kind attribute set to "video" otherwise an exception will be thrown.

interface ImageCapture
readonly attribute PhotoCapabilities photoCapabilities
Describes current photo settings
readonly attribute MediaStreamTrack videoStreamTrack
The MediaStreamTrack passed into the constructor
readonly attribute MediaStream previewStream
The MediaStream that provides a camera preview
[Throws] Promise<void> setOptions(PhotoSettings? photoSettings)
When the setOptions() method of an ImageCapture object is invoked, then a valid PhotoSettings object must be passed in the method to the ImageCapture object. In addition, a new Promise object is returned. If the UA can successfully apply the settings, then the UA must return a resolved promise. If the UA cannot successfully apply the settings, then the UA must return a promise rejected with a newly created ImageCaptureError whose errorDescription is set to OPTIONS_ERROR.
[Throws] Promise<Blob> takePhoto()
When the takePhoto() method of an ImageCapture object is invoked, a new Promise object is returned. If the readyState of the VideoStreamTrack provided in the constructor is not "live", the UA must return a promise rejected with a newly created ImageCaptureError object whose errorDescription is set to INVALID_TRACK. If the UA is unable to execute the takePhoto() method for any other reason (for example, upon invocation of multiple takePhoto() method calls in rapid succession), then the UA must return a promise rejected with a newly created ImageCaptureError object whose errorDescription is set to PHOTO_ERROR. Otherwise it must queue a task, using the DOM manipulation task source, that runs the following steps:
  1. Gather data from the MediaStreamTrack into a Blob containing a single still image. The method of doing this will depend on the underlying device. Devices may temporarily stop streaming data, reconfigure themselves with the appropriate photo settings, take the photo, and then resume streaming. In this case, the stopping and restarting of streaming should cause mute and unmute events to fire on the Track in question.
  2. Return a resolved promise with the Blob object.
[Throws] Promise<ImageBitmap> grabFrame()
When the grabFrame() method of an ImageCapture object is invoked, a new Promise object is returned. If the readyState of the MediaStreamTrack provided in the contructor is not "live", the UA must return a promise rejected with a newly created ImageCaptureError object whose errorDescription is set to INVALID_TRACK. If the UA is unable to execute the grabFrame() method for any other reason, then the UA must return a promise rejected with a newly created ImageCaptureError object whose errorDescription is set to FRAME_ERROR. Otherwise it must queue a task, using the DOM manipulation task source, that runs the following steps:
  1. Gather data from the MediaStreamTrack into an ImageBitmap object (as defined in [[!HTML51]]). The width and height of the ImageBitmap object are derived from the constraints of the MediaStreamTrack. The method of doing this will depend on the underlying device. Devices may temporarily stop streaming data, reconfigure themselves with the appropriate photo settings (which may be a subset of the settings provided in photoCapabilities), take the photo (and convert to an ImageBitmap object), and then resume streaming. In this case, the stopping and restarting of streaming should cause mute and unmute events to fire on the Track in question.
  2. return a resolved promise with an new created ImageBitmap object. {Note: grabFrame() returns data only once upon being invoked.}
ImageCaptureError -----------------
readonly attribute DOMString? errorDescription
The errorDescription attribute returns the appropriate DOMString for the error description. Acceptable values are FRAME_ERROR, OPTIONS_ERROR, PHOTO_ERROR, INVALID_TRACK, and ERROR_UNKNOWN.

MediaSettingsRange

readonly attribute unsigned long max
The maximum value of this setting
readonly attribute unsigned long min
The minimum value of this setting
readonly attribute unsigned long initial
The current value of this setting

MediaSettingsItem

The MediaSettingsItem interface is now defined, which allows for a single setting to be managed.

readonly attribute any value
Value of current setting.

PhotoCapabilities

The photoCapabilities attribute of the ImageCapture object provides the photo-specific settings options and current settings values. The following definitions are assumed for individual settings and are provided for information purposes:

  1. White balance mode is a setting that cameras use to adjust for different color temperatures. Color temperature is the temperature of background light (measured in Kelvin normally). This setting can also be automatically determined by the implementation. If 'automatic' mode is selected, then the Kelvin setting for White Balance Mode may be overridden. Typical temprature ranges for different modes are provided below:
    Mode Kelvin range
    incandescent 2500-3500
    fluorescent 4000-5000
    warm-fluorescent 5000-5500
    daylight 5500-6500
    cloudy-daylight 6500-8000
    twilight 8000-9000
    shade 9000-10000
  2. Exposure is the amount of light allowed to fall on the photographic medium. Auto-exposure mode is a camera setting where the exposure levels are automatically adjusted by the implementation based on the subject of the photo.
  3. Exposure Compensation is a numeric camera setting that adjusts the exposure level from the current value used by the implementation. This value can be used to bias the exposure level enabled by auto-exposure.
  4. The ISO setting of a camera describes the sensistivity of the camera to light. It is a numeric value, where the lower the value the greater the sensitivity. This setting in most implementations relates to shutter speed, and is sometimes known as the ASA setting.
  5. Red Eye Reduction is a feature in cameras that is designed to limit or prevent the appearance of red pupils ("Red Eye") in photography subjects due prolonged exposure to a camera's flash.
  6. Brightness refers to the numeric camera setting that adjusts the perceived amount of light emitting from the photo object. A higher brightness setting increases the intensity of darker areas in a scene while compressing the intensity of brighter parts of the scene.
  7. Contrast is the numeric camera setting that controls the difference in brightness between light and dark areas in a scene. A higher contrast setting reflects an expansion in the difference in brightness.
  8. Saturation is a numeric camera setting that controls the intensity of color in a scene (i.e. the amount of gray in the scene). Very low saturation levels will result in photo's closer to black-and-white.
  9. Sharpness is a numeric camera setting that controls the intensity of edges in a scene. Higher sharpness settings result in higher edge intensity, while lower settings result in less contrast and blurrier edges (i.e. soft focus).
  10. Zoom is a numeric camera setting that controls the focal length of the lens. The setting usually represents a ratio, e.g. 4 is a zoom ratio of 4:1. The minimum value is usually 1, to represent a 1:1 ratio (i.e. no zoom).
  11. Fill light mode describes the flash setting of the capture device.
  12. Focus mode describes the focus setting of the capture device.
attribute MediaSettingsItem autoWhiteBalanceMode
This reflects whether automated White Balance Mode selection is on or off, and is boolean - on is true
attribute MediaSettingsRange whiteBalanceMode
This reflects the current white balance mode setting. Values are of type WhiteBalanceModeEnum.
attribute ExposureMode autoExposureMode
This reflects the current auto exposure mode setting. Values are of type ExposureMode.
attribute MediaSettingsRange exposureCompensation
This reflects the current exposure compensation setting and permitted range. Values are numeric.
attribute MediaSettingsRange iso
This reflects the current camera ISO setting and permitted range. Values are numeric.
This feature reflects the current exposure level for recorded images. Values are numeric.
attribute MediaSettingsItem redEyeReduction
This reflects whether camera red eye reduction is on or off, and is boolean - on is true
attribute MediaSettingsRange brightness
This reflects the current brightness setting of the camera and permitted range. Values are numeric.
attribute MediaSettingsRange contrast
This reflects the current contrast setting of the camera and permitted range. Values are numeric.
attribute MediaSettingsRange saturation
This reflects the current saturation setting of the camera and permitted range. Values are numeric.
attribute MediaSettingsRange sharpness
This reflects the current sharpness setting of the camera and permitted range. Values are numeric.
attribute MediaSettingsRange imageHeight
This reflects the image height range supported by the UA and the current height setting.
attribute MediaSettingsRange imageWidth
This reflects the image width range supported by the UA and the current width setting.
attribute MediaSettingsRange zoom
This reflects the zoom value range supported by the UA and the current zoom setting.
attribute FillLightMode fillLightMode
This reflects the current fill light (flash) mode setting. Values are of type FillLightMode.
attribute FocusMode focusMode
This reflects the current focus mode setting. Values are of type FocusMode.

ExposureMode

frame-average
Average of light information from entire scene
center-weighted
Sensitivity concentrated towards center of viewfinder
spot-metering
Spot-centered weighting

FillLightMode

unavailable
This source does not have an option to change fill light modes (e.g., the camera does not have a flash)
auto
The video device's fill light will be enabled when required (typically low light conditions). Otherwise it will be off. Note that auto does not guarantee that a flash will fire when takePhoto is called. Use flash to guarantee firing of the flash for the takePhoto() or getFrame() methods.
off
The source's fill light and/or flash will not be used.
flash
This value will always cause the flash to fire for the takePhoto() or getFrame() methods.
on
The source's fill light will be turned on (and remain on) while the source MediaStreamTrack is active

FocusMode

unavailable
This source does not have an option to change focus modes.
auto
Auto-focus mode is enabled.
manual
TManual focus mode is enabled.

PhotoSettings

The PhotoSettings object is optionally passed into the ImageCapture.setOptions() method in order to modify capture device settings specific to still imagery. Each of the attributes in this object are optional.

boolean autoWhiteBalanceMode
This reflects whether automatic White Balance Mode selection is desired.
unsigned long whiteBalanceMode
This reflects the desired white balance mode setting.
ExposureMode autoExposureMode
This reflects the desired auto exposure mode setting. Acceptable values are of type ExposureMode.
unsigned long exposureCompensation
This reflects the desired exposure compensation setting.
unsigned long iso
This reflects the desired camera ISO setting.
This feature reflects the current exposure level for recorded images. Values are numeric.
boolean redEyeReduction
This reflects whether camera red eye reduction is desired
unsigned long brightness
This reflects the desired brightness setting of the camera.
unsigned long contrast
This reflects the desired contrast setting of the camera.
unsigned long saturation
This reflects the desired saturation setting of the camera.
unsigned long sharpness
This reflects the desired sharpness setting of the camera.
unsigned long zoom
This reflects the desired zoom setting of the camera.
unsigned long imageHeight
This reflects the desired image height. The UA must select the closest height value this setting if it supports a discrete set of height options.
unsigned long imageWidth
This reflects the desired image width. The UA must select the closest width value this setting if it supports a discrete set of width options.
FillLightMode fillLightMode
This reflects the desired fill light (flash) mode setting. Acceptable values are of type FillLightMode.
FocusMode focusMode
This reflects the desired focus mode setting. Acceptable values are of type FocusMode.
Examples ------- ##### Grabbing a Frame for Post-Processing
    navigator.mediaDevices.getUserMedia({video: true}).then(gotMedia, failedToGetMedia);
    
   function gotMedia(mediastream) {
          //Extract video track.
          var videoDevice = mediastream.getVideoTracks()[0];
          // Check if this device supports a picture mode...
          var captureDevice = new ImageCapture(videoDevice);
          if (captureDevice) {
                captureDevice.grabFrame().then(processFrame(imgData));
          }
    }

    function processFrame(e) {
           imgData = e.imageData;
           width = imgData.width;
           height = imgData.height;
           for (j=3; j < imgData.width; j+=4)
                {
                // Set all alpha values to medium opacity
                imgData.data[j] = 128;
                }
           // Create new ImageObject with the modified pixel values
           var canvas = document.createElement('canvas');
           ctx = canvas.getContext("2d");
           newImg = ctx.createImageData(width,height);
           for (j=0; j < imgData.width; j++)
                {
                newImg.data[j] = imgData.data[j];
                }
           // ... and do something with the modified image ...
           }
    }

    function failedToGetMedia{
           console.log('Stream failure');
    }
    
##### Taking a picture if Red Eye Reduction is activated
    navigator.getUserMedia({video: true}, gotMedia, failedToGetMedia);
    
   function gotMedia(mediastream) {
          //Extract video track.
          var videoDevice = mediastream.getVideoTracks()[0];
          // Check if this device supports a picture mode...
          var captureDevice = new ImageCapture(videoDevice);
          if (captureDevice) {
                if (captureDevice.photoCapabilities.redEyeReduction) {
                   captureDevice.setOptions({redEyeReductionSetting:true}).then(captureDevice.takePhoto().then(showPicture(blob),function(error){alert("Failed to take photo");}));
                   }
                else
                   console.log('No red eye reduction');
                }
            }

    function showPicture(e) {
           var img = document.querySelector("img");
           img.src = URL.createObjectURL(e.data);
           }
           
    function failedToGetMedia{
           console.log('Stream failure');
           }
    
##### Repeated grabbing of a frame
    <html>
   <body>
   <p><canvas id="frame"></canvas></p> 
   <button onclick="stopFunction()">Stop frame grab</button>
   <script>
   var canvas = document.getElementById('frame');
   navigator.getUserMedia({video: true}, gotMedia, failedToGetMedia);

   function gotMedia(mediastream) {
          //Extract video track.  
          var videoDevice = mediastream.getVideoTracks()[0];
          // Check if this device supports a picture mode...
          var captureDevice = new ImageCapture(videoDevice);
          var frameVar;
          if (captureDevice) {
                frameVar = setInterval(captureDevice.grabFrame().then(processFrame()), 1000);
                }
            }

    function processFrame(e) {
            imgData = e.imageData;
            canvas.width = imgData.width;
            canvas.height = imgData.height;
            canvas.getContext('2d').drawImage(imgData, 0, 0,imgData.width,imgData.height);
            }
            
    function stopFunction(e) {
            clearInterval(myVar);
            }
   </script>
   </body>
   </html>