The android.hardware.camera2 package provides an interface to individual camera devices connected to an Android device. It replaces the deprecated Android.Hardware.Camera class.
This package models a camera device as a pipeline, which takes in input requests for capturing a single frame, captures the single image per the request, and then outputs one capture result metadata packet, plus a set of output image buffers for the request. The requests are processed in-order, and multiple requests can be in flight at once. Since the camera device is a pipeline with multiple stages, having multiple requests in flight is required to maintain full framerate on most Android devices.
To enumerate, query, and open available camera devices, obtain a Android.Hardware.Camera2.CameraManager instance.
Individual Android.Hardware.Camera2.CameraDevice provide a set of static property information that describes the hardware device and the available settings and output parameters for the device. This information is provided through the Android.Hardware.Camera2.CameraCharacteristics object, and is available through Android.Hardware.Camera2.CameraManager.GetCameraCharacteristics(string)
To capture or stream images from a camera device, the application must first create a Android.Hardware.Camera2.CameraCaptureSession with a set of output Surfaces for use with the camera device, with Android.Hardware.Camera2.CameraDevice.createCaptureSession(java.util.List<android.view.Surface>, android.hardware.camera2.CameraCaptureSession.StateCallback, android.os.Handler). Each Surface has to be pre-configured with an Android.Hardware.Camera2.Params.StreamConfigurationMap (if applicable) to match the sizes and formats available from the camera device. A target Surface can be obtained from a variety of classes, including Android.Views.SurfaceView, Android.Graphics.SurfaceTexture via Android.Views.Surface(Android.Graphics.SurfaceTexture), Android.Media.MediaCodec, Android.Media.MediaRecorder, Android.Renderscripts.Allocation, and Android.Media.ImageReader.
Generally, camera preview images are sent to Android.Views.SurfaceView or Android.Views.TextureView (via its Android.Graphics.SurfaceTexture). Capture of JPEG images or RAW buffers for Android.Hardware.Camera2.DngCreator can be done with Android.Media.ImageReader with the Android.Graphics.ImageFormat.Jpeg and Android.Graphics.ImageFormat.RawSensor formats. Application-driven processing of camera data in RenderScript, OpenGL ES, or directly in managed or native code is best done through Android.Renderscripts.Allocation with a YUV Android.Renderscripts.Type, Android.Graphics.SurfaceTexture, and Android.Media.ImageReader with a Android.Graphics.ImageFormat.Yuv420888 format, respectively.
The application then needs to construct a Android.Hardware.Camera2.CaptureRequest, which defines all the capture parameters needed by a camera device to capture a single image. The request also lists which of the configured output Surfaces should be used as targets for this capture. The CameraDevice has a Android.Hardware.Camera2.CameraDevice.CreateCaptureRequest(Android.Hardware.Camera2.CameraTemplate) for creating a NoType:android/hardware/camera2/CaptureRequest$Builder;Href=../../../../reference/android/hardware/camera2/CaptureRequest.Builder.html for a given use case, which is optimized for the Android device the application is running on.
Once the request has been set up, it can be handed to the active capture session either for a one-shot Android.Hardware.Camera2.CameraCaptureSession.Capture(Android.Hardware.Camera2.CaptureRequest, .CaptureCallback, .CaptureCallback) or for an endlessly Android.Hardware.Camera2.CameraCaptureSession.SetRepeatingRequest(Android.Hardware.Camera2.CaptureRequest, .CaptureCallback, .CaptureCallback) use. Both methods also have a variant that accepts a list of requests to use as a burst capture / repeating burst. Repeating requests have a lower priority than captures, so a request submitted through capture() while there's a repeating request configured will be captured before any new instances of the currently repeating (burst) capture will begin capture.
After processing a request, the camera device will produce a Android.Hardware.Camera2.TotalCaptureResult object, which contains information about the state of the camera device at time of capture, and the final settings used. These may vary somewhat from the request, if rounding or resolving contradictory parameters was necessary. The camera device will also send a frame of image data into each of the output Surfaces included in the request. These are produced asynchronously relative to the output CaptureResult, sometimes substantially later.