Camera2CameraControl

@ExperimentalCamera2Interop
@RequiresApi(value = 21)
class Camera2CameraControl


An class that provides ability to interoperate with the android.hardware.camera2 APIs.

Camera2 specific controls, like capture request options, can be applied through this class. A Camera2CameraControl can be created from a general CameraControl which is associated to a camera. Then the controls will affect all use cases that are using that camera.

If any option applied by Camera2CameraControl conflicts with the options required by CameraX internally. The options from Camera2CameraControl will override, which may result in unexpected behavior depends on the options being applied.

Summary

Public functions

ListenableFuture<Void!>

Adds a CaptureRequestOptions updates the session with the options it contains.

ListenableFuture<Void!>

Clears all existing capture request options.

java-static Camera2CameraControl
from(cameraControl: CameraControl)

Gets the Camera2CameraControl from a CameraControl.

CaptureRequestOptions

Gets all existing capture request options.

ListenableFuture<Void!>

Sets a CaptureRequestOptions and updates the session with the options it contains.

Public functions

addCaptureRequestOptions

Added in 1.0.0
fun addCaptureRequestOptions(bundle: CaptureRequestOptions): ListenableFuture<Void!>

Adds a CaptureRequestOptions updates the session with the options it contains.

The options will be merged with the existing options. If one option is set with a different value, it will overwrite the existing value.

Any values which are in conflict with values already set by CameraX, such as by androidx.camera.core.CameraControl, will overwrite the existing values. The values will be submitted with every repeating and single capture requests issued by CameraX, which may result in unexpected behavior depends on the values being applied.

Parameters
bundle: CaptureRequestOptions

The CaptureRequestOptions which will be set.

Returns
ListenableFuture<Void!>

a ListenableFuture which completes when the repeating android.hardware.camera2.CaptureResult shows the options have be submitted completely. The future fails with CameraControl.OperationCanceledException if newer options are set or camera is closed before the current request completes.

clearCaptureRequestOptions

Added in 1.1.0
fun clearCaptureRequestOptions(): ListenableFuture<Void!>

Clears all existing capture request options.

Returns
ListenableFuture<Void!>

a ListenableFuture which completes when the repeating android.hardware.camera2.CaptureResult shows the options have be submitted completely. The future fails with CameraControl.OperationCanceledException if newer options are set or camera is closed before the current request completes.

from

Added in 1.0.0
java-static fun from(cameraControl: CameraControl): Camera2CameraControl

Gets the Camera2CameraControl from a CameraControl.

The CameraControl is still usable after a Camera2CameraControl is obtained from it. Note that the Camera2CameraControl has higher priority than the CameraControl. For example, if FLASH_MODE is set through the Camera2CameraControl. All CameraControl features that required FLASH_MODE internally like torch may not work properly.

Parameters
cameraControl: CameraControl

The CameraControl to get from.

Returns
Camera2CameraControl

The camera control with Camera2 implementation.

Throws
java.lang.IllegalArgumentException

if the camera control does not contain the camera2 information (e.g., if CameraX was not initialized with a androidx.camera.camera2.Camera2Config).

getCaptureRequestOptions

Added in 1.0.0
fun getCaptureRequestOptions(): CaptureRequestOptions

Gets all existing capture request options.

It doesn't include the capture request options applied by the android.hardware.camera2.CameraDevice templates or by CameraX.

setCaptureRequestOptions

Added in 1.0.0
fun setCaptureRequestOptions(bundle: CaptureRequestOptions): ListenableFuture<Void!>

Sets a CaptureRequestOptions and updates the session with the options it contains.

This will first clear all options that have already been set, then apply the new options.

Any values which are in conflict with values already set by CameraX, such as by androidx.camera.core.CameraControl, will overwrite the existing values. The values will be submitted with every repeating and single capture requests issued by CameraX, which may result in unexpected behavior depending on the values being applied.

Parameters
bundle: CaptureRequestOptions

The CaptureRequestOptions which will be set.

Returns
ListenableFuture<Void!>

a ListenableFuture which completes when the repeating android.hardware.camera2.CaptureResult shows the options have be submitted completely. The future fails with CameraControl.OperationCanceledException if newer options are set or camera is closed before the current request completes. Cancelling the ListenableFuture is a no-op.