blob: 3dc8970a1c8ab54b035b00929bfe111244619642 [file] [log] [blame]
Eino-Ville Talvalab2675542012-12-12 13:29:45 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Eino-Ville Talvala2f1a2e42013-07-25 17:12:05 -070017package android.hardware.camera2;
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080018
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070019import android.hardware.camera2.impl.CameraMetadataNative;
Igor Murashkinbdf366c2014-07-25 16:54:20 -070020import android.hardware.camera2.impl.CaptureResultExtras;
Igor Murashkin6c76f582014-07-15 17:19:49 -070021import android.hardware.camera2.impl.PublicKey;
22import android.hardware.camera2.impl.SyntheticKey;
Igor Murashkind6d65152014-05-19 16:31:02 -070023import android.hardware.camera2.utils.TypeReference;
24import android.util.Log;
Igor Murashkin72f9f0a2014-05-14 15:46:10 -070025import android.util.Rational;
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080026
Igor Murashkind6d65152014-05-19 16:31:02 -070027import java.util.List;
28
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080029/**
Igor Murashkindb075af2014-05-21 10:07:08 -070030 * <p>The subset of the results of a single image capture from the image sensor.</p>
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080031 *
Igor Murashkindb075af2014-05-21 10:07:08 -070032 * <p>Contains a subset of the final configuration for the capture hardware (sensor, lens,
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080033 * flash), the processing pipeline, the control algorithms, and the output
34 * buffers.</p>
35 *
36 * <p>CaptureResults are produced by a {@link CameraDevice} after processing a
37 * {@link CaptureRequest}. All properties listed for capture requests can also
38 * be queried on the capture result, to determine the final values used for
39 * capture. The result also includes additional metadata about the state of the
40 * camera device during the capture.</p>
41 *
Igor Murashkindb075af2014-05-21 10:07:08 -070042 * <p>Not all properties returned by {@link CameraCharacteristics#getAvailableCaptureResultKeys()}
43 * are necessarily available. Some results are {@link CaptureResult partial} and will
44 * not have every key set. Only {@link TotalCaptureResult total} results are guaranteed to have
45 * every key available that was enabled by the request.</p>
46 *
47 * <p>{@link CaptureResult} objects are immutable.</p>
Ruben Brunkf967a542014-04-28 16:31:11 -070048 *
Eino-Ville Talvalab2675542012-12-12 13:29:45 -080049 */
Igor Murashkindb075af2014-05-21 10:07:08 -070050public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> {
Igor Murashkind6d65152014-05-19 16:31:02 -070051
52 private static final String TAG = "CaptureResult";
53 private static final boolean VERBOSE = false;
54
55 /**
56 * A {@code Key} is used to do capture result field lookups with
57 * {@link CaptureResult#get}.
58 *
59 * <p>For example, to get the timestamp corresponding to the exposure of the first row:
60 * <code><pre>
61 * long timestamp = captureResult.get(CaptureResult.SENSOR_TIMESTAMP);
62 * </pre></code>
63 * </p>
64 *
65 * <p>To enumerate over all possible keys for {@link CaptureResult}, see
66 * {@link CameraCharacteristics#getAvailableCaptureResultKeys}.</p>
67 *
68 * @see CaptureResult#get
69 * @see CameraCharacteristics#getAvailableCaptureResultKeys
70 */
71 public final static class Key<T> {
72 private final CameraMetadataNative.Key<T> mKey;
73
74 /**
75 * Visible for testing and vendor extensions only.
76 *
77 * @hide
78 */
79 public Key(String name, Class<T> type) {
80 mKey = new CameraMetadataNative.Key<T>(name, type);
81 }
82
83 /**
84 * Visible for testing and vendor extensions only.
85 *
86 * @hide
87 */
88 public Key(String name, TypeReference<T> typeReference) {
89 mKey = new CameraMetadataNative.Key<T>(name, typeReference);
90 }
91
92 /**
93 * Return a camelCase, period separated name formatted like:
94 * {@code "root.section[.subsections].name"}.
95 *
96 * <p>Built-in keys exposed by the Android SDK are always prefixed with {@code "android."};
97 * keys that are device/platform-specific are prefixed with {@code "com."}.</p>
98 *
99 * <p>For example, {@code CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP} would
100 * have a name of {@code "android.scaler.streamConfigurationMap"}; whereas a device
101 * specific key might look like {@code "com.google.nexus.data.private"}.</p>
102 *
103 * @return String representation of the key name
104 */
105 public String getName() {
106 return mKey.getName();
107 }
108
109 /**
110 * {@inheritDoc}
111 */
112 @Override
113 public final int hashCode() {
114 return mKey.hashCode();
115 }
116
117 /**
118 * {@inheritDoc}
119 */
120 @SuppressWarnings("unchecked")
121 @Override
122 public final boolean equals(Object o) {
123 return o instanceof Key && ((Key<T>)o).mKey.equals(mKey);
124 }
125
126 /**
127 * Visible for CameraMetadataNative implementation only; do not use.
128 *
129 * TODO: Make this private or remove it altogether.
130 *
131 * @hide
132 */
133 public CameraMetadataNative.Key<T> getNativeKey() {
134 return mKey;
135 }
136
137 @SuppressWarnings({ "unchecked" })
138 /*package*/ Key(CameraMetadataNative.Key<?> nativeKey) {
139 mKey = (CameraMetadataNative.Key<T>) nativeKey;
140 }
141 }
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700142
143 private final CameraMetadataNative mResults;
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700144 private final CaptureRequest mRequest;
145 private final int mSequenceId;
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700146 private final long mFrameNumber;
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700147
Igor Murashkin70725502013-06-25 20:27:06 +0000148 /**
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700149 * Takes ownership of the passed-in properties object
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700150 *
151 * <p>For internal use only</p>
Igor Murashkin70725502013-06-25 20:27:06 +0000152 * @hide
153 */
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700154 public CaptureResult(CameraMetadataNative results, CaptureRequest parent,
155 CaptureResultExtras extras) {
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700156 if (results == null) {
157 throw new IllegalArgumentException("results was null");
158 }
159
160 if (parent == null) {
161 throw new IllegalArgumentException("parent was null");
162 }
163
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700164 if (extras == null) {
165 throw new IllegalArgumentException("extras was null");
166 }
167
Igor Murashkind6d65152014-05-19 16:31:02 -0700168 mResults = CameraMetadataNative.move(results);
169 if (mResults.isEmpty()) {
170 throw new AssertionError("Results must not be empty");
171 }
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700172 mRequest = parent;
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700173 mSequenceId = extras.getRequestId();
174 mFrameNumber = extras.getFrameNumber();
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700175 }
176
Ruben Brunkf967a542014-04-28 16:31:11 -0700177 /**
178 * Returns a copy of the underlying {@link CameraMetadataNative}.
179 * @hide
180 */
181 public CameraMetadataNative getNativeCopy() {
182 return new CameraMetadataNative(mResults);
183 }
184
Igor Murashkind6d65152014-05-19 16:31:02 -0700185 /**
186 * Creates a request-less result.
187 *
188 * <p><strong>For testing only.</strong></p>
189 * @hide
190 */
191 public CaptureResult(CameraMetadataNative results, int sequenceId) {
192 if (results == null) {
193 throw new IllegalArgumentException("results was null");
194 }
195
196 mResults = CameraMetadataNative.move(results);
197 if (mResults.isEmpty()) {
198 throw new AssertionError("Results must not be empty");
199 }
200
201 mRequest = null;
202 mSequenceId = sequenceId;
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700203 mFrameNumber = -1;
Igor Murashkind6d65152014-05-19 16:31:02 -0700204 }
205
206 /**
207 * Get a capture result field value.
208 *
209 * <p>The field definitions can be found in {@link CaptureResult}.</p>
210 *
211 * <p>Querying the value for the same key more than once will return a value
212 * which is equal to the previous queried value.</p>
213 *
214 * @throws IllegalArgumentException if the key was not valid
215 *
216 * @param key The result field to read.
217 * @return The value of that key, or {@code null} if the field is not set.
218 */
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700219 public <T> T get(Key<T> key) {
Igor Murashkind6d65152014-05-19 16:31:02 -0700220 T value = mResults.get(key);
221 if (VERBOSE) Log.v(TAG, "#get for Key = " + key.getName() + ", returned value = " + value);
222 return value;
223 }
224
225 /**
226 * {@inheritDoc}
227 * @hide
228 */
229 @SuppressWarnings("unchecked")
230 @Override
231 protected <T> T getProtected(Key<?> key) {
232 return (T) mResults.get(key);
233 }
234
235 /**
236 * {@inheritDoc}
237 * @hide
238 */
239 @SuppressWarnings("unchecked")
240 @Override
241 protected Class<Key<?>> getKeyClass() {
242 Object thisClass = Key.class;
243 return (Class<Key<?>>)thisClass;
244 }
245
246 /**
247 * Dumps the native metadata contents to logcat.
248 *
249 * <p>Visibility for testing/debugging only. The results will not
250 * include any synthesized keys, as they are invisible to the native layer.</p>
251 *
252 * @hide
253 */
254 public void dumpToLog() {
255 mResults.dumpToLog();
256 }
257
258 /**
259 * {@inheritDoc}
260 */
261 @Override
262 public List<Key<?>> getKeys() {
263 // Force the javadoc for this function to show up on the CaptureResult page
264 return super.getKeys();
Eino-Ville Talvalab2675542012-12-12 13:29:45 -0800265 }
266
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700267 /**
268 * Get the request associated with this result.
269 *
Igor Murashkindb075af2014-05-21 10:07:08 -0700270 * <p>Whenever a request has been fully or partially captured, with
Eino-Ville Talvalafd887432014-09-04 13:07:40 -0700271 * {@link CameraCaptureSession.CaptureCallback#onCaptureCompleted} or
272 * {@link CameraCaptureSession.CaptureCallback#onCaptureProgressed}, the {@code result}'s
Igor Murashkindb075af2014-05-21 10:07:08 -0700273 * {@code getRequest()} will return that {@code request}.
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700274 * </p>
275 *
Igor Murashkindb075af2014-05-21 10:07:08 -0700276 * <p>For example,
Eino-Ville Talvalafd887432014-09-04 13:07:40 -0700277 * <code><pre>cameraDevice.capture(someRequest, new CaptureCallback() {
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700278 * {@literal @}Override
279 * void onCaptureCompleted(CaptureRequest myRequest, CaptureResult myResult) {
280 * assert(myResult.getRequest.equals(myRequest) == true);
281 * }
Igor Murashkindb075af2014-05-21 10:07:08 -0700282 * }, null);
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700283 * </code></pre>
284 * </p>
285 *
286 * @return The request associated with this result. Never {@code null}.
287 */
288 public CaptureRequest getRequest() {
289 return mRequest;
290 }
291
292 /**
293 * Get the frame number associated with this result.
294 *
295 * <p>Whenever a request has been processed, regardless of failure or success,
296 * it gets a unique frame number assigned to its future result/failure.</p>
297 *
Chien-Yu Chen5398a672015-03-19 14:48:43 -0700298 * <p>For the same type of request (capturing from the camera device or reprocessing), this
299 * value monotonically increments, starting with 0, for every new result or failure and the
300 * scope is the lifetime of the {@link CameraDevice}. Between different types of requests,
301 * the frame number may not monotonically increment. For example, the frame number of a newer
302 * reprocess result may be smaller than the frame number of an older result of capturing new
303 * images from the camera device, but the frame number of a newer reprocess result will never be
304 * smaller than the frame number of an older reprocess result.</p>
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700305 *
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700306 * @return The frame number
Chien-Yu Chen5398a672015-03-19 14:48:43 -0700307 *
308 * @see CameraDevice#createCaptureRequest
309 * @see CameraDevice#createReprocessCaptureRequest
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700310 */
Igor Murashkinbdf366c2014-07-25 16:54:20 -0700311 public long getFrameNumber() {
312 return mFrameNumber;
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700313 }
314
315 /**
316 * The sequence ID for this failure that was returned by the
Eino-Ville Talvala0a160ac2014-07-02 14:29:26 -0700317 * {@link CameraCaptureSession#capture} family of functions.
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700318 *
319 * <p>The sequence ID is a unique monotonically increasing value starting from 0,
320 * incremented every time a new group of requests is submitted to the CameraDevice.</p>
321 *
322 * @return int The ID for the sequence of requests that this capture result is a part of
323 *
Eino-Ville Talvalafd887432014-09-04 13:07:40 -0700324 * @see CameraDevice.CaptureCallback#onCaptureSequenceCompleted
325 * @see CameraDevice.CaptureCallback#onCaptureSequenceAborted
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700326 */
327 public int getSequenceId() {
328 return mSequenceId;
329 }
330
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700331 /*@O~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~
332 * The key entries below this point are generated from metadata
333 * definitions in /system/media/camera/docs. Do not modify by hand or
334 * modify the comment blocks at the start or end.
335 *~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~*/
336
337 /**
Zhijun He379af012014-05-06 11:54:54 -0700338 * <p>The mode control selects how the image data is converted from the
339 * sensor's native color into linear sRGB color.</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -0700340 * <p>When auto-white balance (AWB) is enabled with {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode}, this
Zhijun He379af012014-05-06 11:54:54 -0700341 * control is overridden by the AWB routine. When AWB is disabled, the
342 * application controls how the color mapping is performed.</p>
343 * <p>We define the expected processing pipeline below. For consistency
344 * across devices, this is always the case with TRANSFORM_MATRIX.</p>
345 * <p>When either FULL or HIGH_QUALITY is used, the camera device may
346 * do additional processing but {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} and
347 * {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform} will still be provided by the
348 * camera device (in the results) and be roughly correct.</p>
349 * <p>Switching to TRANSFORM_MATRIX and using the data provided from
350 * FAST or HIGH_QUALITY will yield a picture with the same white point
351 * as what was produced by the camera device in the earlier frame.</p>
352 * <p>The expected processing pipeline is as follows:</p>
353 * <p><img alt="White balance processing pipeline" src="../../../../images/camera2/metadata/android.colorCorrection.mode/processing_pipeline.png" /></p>
354 * <p>The white balance is encoded by two values, a 4-channel white-balance
355 * gain vector (applied in the Bayer domain), and a 3x3 color transform
356 * matrix (applied after demosaic).</p>
357 * <p>The 4-channel white-balance gains are defined as:</p>
358 * <pre><code>{@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} = [ R G_even G_odd B ]
359 * </code></pre>
360 * <p>where <code>G_even</code> is the gain for green pixels on even rows of the
361 * output, and <code>G_odd</code> is the gain for green pixels on the odd rows.
362 * These may be identical for a given camera device implementation; if
363 * the camera device does not support a separate gain for even/odd green
364 * channels, it will use the <code>G_even</code> value, and write <code>G_odd</code> equal to
365 * <code>G_even</code> in the output result metadata.</p>
366 * <p>The matrices for color transforms are defined as a 9-entry vector:</p>
367 * <pre><code>{@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform} = [ I0 I1 I2 I3 I4 I5 I6 I7 I8 ]
368 * </code></pre>
369 * <p>which define a transform from input sensor colors, <code>P_in = [ r g b ]</code>,
370 * to output linear sRGB, <code>P_out = [ r' g' b' ]</code>,</p>
371 * <p>with colors as follows:</p>
372 * <pre><code>r' = I0r + I1g + I2b
373 * g' = I3r + I4g + I5b
374 * b' = I6r + I7g + I8b
375 * </code></pre>
376 * <p>Both the input and output value ranges must match. Overflow/underflow
377 * values are clipped to fit within the range.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700378 * <p><b>Possible values:</b>
379 * <ul>
380 * <li>{@link #COLOR_CORRECTION_MODE_TRANSFORM_MATRIX TRANSFORM_MATRIX}</li>
381 * <li>{@link #COLOR_CORRECTION_MODE_FAST FAST}</li>
382 * <li>{@link #COLOR_CORRECTION_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
383 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700384 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
385 * <p><b>Full capability</b> -
386 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
387 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun He379af012014-05-06 11:54:54 -0700388 *
389 * @see CaptureRequest#COLOR_CORRECTION_GAINS
390 * @see CaptureRequest#COLOR_CORRECTION_TRANSFORM
391 * @see CaptureRequest#CONTROL_AWB_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700392 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun He379af012014-05-06 11:54:54 -0700393 * @see #COLOR_CORRECTION_MODE_TRANSFORM_MATRIX
394 * @see #COLOR_CORRECTION_MODE_FAST
395 * @see #COLOR_CORRECTION_MODE_HIGH_QUALITY
396 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700397 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -0700398 public static final Key<Integer> COLOR_CORRECTION_MODE =
399 new Key<Integer>("android.colorCorrection.mode", int.class);
400
401 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -0800402 * <p>A color transform matrix to use to transform
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -0700403 * from sensor RGB color space to output linear sRGB color space.</p>
Zhijun He49a3ca92014-02-05 13:48:09 -0800404 * <p>This matrix is either set by the camera device when the request
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800405 * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is not TRANSFORM_MATRIX, or
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700406 * directly by the application in the request when the
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800407 * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is TRANSFORM_MATRIX.</p>
Zhijun He49a3ca92014-02-05 13:48:09 -0800408 * <p>In the latter case, the camera device may round the matrix to account
409 * for precision issues; the final rounded matrix should be reported back
410 * in this matrix result metadata. The transform should keep the magnitude
411 * of the output color values within <code>[0, 1.0]</code> (assuming input color
412 * values is within the normalized range <code>[0, 1.0]</code>), or clipping may occur.</p>
Yin-Chia Yehd9fc67c2015-01-30 10:47:22 -0800413 * <p>The valid range of each matrix element varies on different devices, but
414 * values within [-1.5, 3.0] are guaranteed not to be clipped.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700415 * <p><b>Units</b>: Unitless scale factors</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700416 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
417 * <p><b>Full capability</b> -
418 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
419 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800420 *
421 * @see CaptureRequest#COLOR_CORRECTION_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700422 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700423 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700424 @PublicKey
Eino-Ville Talvala2bb91a72014-05-27 18:16:53 -0700425 public static final Key<android.hardware.camera2.params.ColorSpaceTransform> COLOR_CORRECTION_TRANSFORM =
426 new Key<android.hardware.camera2.params.ColorSpaceTransform>("android.colorCorrection.transform", android.hardware.camera2.params.ColorSpaceTransform.class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700427
428 /**
Igor Murashkin7d2a5c52014-01-17 15:07:52 -0800429 * <p>Gains applying to Bayer raw color channels for
Zhijun Hecc28a412014-02-24 15:11:23 -0800430 * white-balance.</p>
Eino-Ville Talvala2bb91a72014-05-27 18:16:53 -0700431 * <p>These per-channel gains are either set by the camera device
432 * when the request {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is not
433 * TRANSFORM_MATRIX, or directly by the application in the
434 * request when the {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} is
435 * TRANSFORM_MATRIX.</p>
436 * <p>The gains in the result metadata are the gains actually
437 * applied by the camera device to the current frame.</p>
Yin-Chia Yehd9fc67c2015-01-30 10:47:22 -0800438 * <p>The valid range of gains varies on different devices, but gains
439 * between [1.0, 3.0] are guaranteed not to be clipped. Even if a given
440 * device allows gains below 1.0, this is usually not recommended because
441 * this can create color artifacts.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700442 * <p><b>Units</b>: Unitless gain factors</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700443 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
444 * <p><b>Full capability</b> -
445 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
446 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800447 *
448 * @see CaptureRequest#COLOR_CORRECTION_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700449 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700450 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700451 @PublicKey
Eino-Ville Talvala2bb91a72014-05-27 18:16:53 -0700452 public static final Key<android.hardware.camera2.params.RggbChannelVector> COLOR_CORRECTION_GAINS =
453 new Key<android.hardware.camera2.params.RggbChannelVector>("android.colorCorrection.gains", android.hardware.camera2.params.RggbChannelVector.class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700454
455 /**
Zhijun Hea05e59d2014-07-08 18:27:47 -0700456 * <p>Mode of operation for the chromatic aberration correction algorithm.</p>
Zhijun Hea05e59d2014-07-08 18:27:47 -0700457 * <p>Chromatic (color) aberration is caused by the fact that different wavelengths of light
458 * can not focus on the same point after exiting from the lens. This metadata defines
459 * the high level control of chromatic aberration correction algorithm, which aims to
460 * minimize the chromatic artifacts that may occur along the object boundaries in an
461 * image.</p>
462 * <p>FAST/HIGH_QUALITY both mean that camera device determined aberration
463 * correction will be applied. HIGH_QUALITY mode indicates that the camera device will
464 * use the highest-quality aberration correction algorithms, even if it slows down
465 * capture rate. FAST means the camera device will not slow down capture rate when
466 * applying aberration correction.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700467 * <p>LEGACY devices will always be in FAST mode.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700468 * <p><b>Possible values:</b>
469 * <ul>
470 * <li>{@link #COLOR_CORRECTION_ABERRATION_MODE_OFF OFF}</li>
471 * <li>{@link #COLOR_CORRECTION_ABERRATION_MODE_FAST FAST}</li>
472 * <li>{@link #COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
473 * </ul></p>
474 * <p><b>Available values for this device:</b><br>
475 * {@link CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES android.colorCorrection.availableAberrationModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700476 * <p>This key is available on all devices.</p>
Zhijun Hea05e59d2014-07-08 18:27:47 -0700477 *
Zhijun He9e4e4392014-08-18 11:12:32 -0700478 * @see CameraCharacteristics#COLOR_CORRECTION_AVAILABLE_ABERRATION_MODES
479 * @see #COLOR_CORRECTION_ABERRATION_MODE_OFF
480 * @see #COLOR_CORRECTION_ABERRATION_MODE_FAST
481 * @see #COLOR_CORRECTION_ABERRATION_MODE_HIGH_QUALITY
Zhijun Hea05e59d2014-07-08 18:27:47 -0700482 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700483 @PublicKey
Zhijun He9e4e4392014-08-18 11:12:32 -0700484 public static final Key<Integer> COLOR_CORRECTION_ABERRATION_MODE =
485 new Key<Integer>("android.colorCorrection.aberrationMode", int.class);
Zhijun Hea05e59d2014-07-08 18:27:47 -0700486
487 /**
Zhijun He379af012014-05-06 11:54:54 -0700488 * <p>The desired setting for the camera device's auto-exposure
489 * algorithm's antibanding compensation.</p>
490 * <p>Some kinds of lighting fixtures, such as some fluorescent
491 * lights, flicker at the rate of the power supply frequency
492 * (60Hz or 50Hz, depending on country). While this is
493 * typically not noticeable to a person, it can be visible to
494 * a camera device. If a camera sets its exposure time to the
495 * wrong value, the flicker may become visible in the
496 * viewfinder as flicker or in a final captured image, as a
497 * set of variable-brightness bands across the image.</p>
498 * <p>Therefore, the auto-exposure routines of camera devices
499 * include antibanding routines that ensure that the chosen
500 * exposure value will not cause such banding. The choice of
501 * exposure time depends on the rate of flicker, which the
502 * camera device can detect automatically, or the expected
503 * rate can be selected by the application using this
504 * control.</p>
505 * <p>A given camera device may not support all of the possible
506 * options for the antibanding mode. The
507 * {@link CameraCharacteristics#CONTROL_AE_AVAILABLE_ANTIBANDING_MODES android.control.aeAvailableAntibandingModes} key contains
508 * the available modes for a given camera device.</p>
Yin-Chia Yeh7b2cae62014-11-25 11:54:18 -0800509 * <p>AUTO mode is the default if it is available on given
510 * camera device. When AUTO mode is not available, the
511 * default will be either 50HZ or 60HZ, and both 50HZ
512 * and 60HZ will be available.</p>
Zhijun He379af012014-05-06 11:54:54 -0700513 * <p>If manual exposure control is enabled (by setting
514 * {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} or {@link CaptureRequest#CONTROL_MODE android.control.mode} to OFF),
515 * then this setting has no effect, and the application must
516 * ensure it selects exposure times that do not cause banding
517 * issues. The {@link CaptureResult#STATISTICS_SCENE_FLICKER android.statistics.sceneFlicker} key can assist
518 * the application in this.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700519 * <p><b>Possible values:</b>
520 * <ul>
521 * <li>{@link #CONTROL_AE_ANTIBANDING_MODE_OFF OFF}</li>
522 * <li>{@link #CONTROL_AE_ANTIBANDING_MODE_50HZ 50HZ}</li>
523 * <li>{@link #CONTROL_AE_ANTIBANDING_MODE_60HZ 60HZ}</li>
524 * <li>{@link #CONTROL_AE_ANTIBANDING_MODE_AUTO AUTO}</li>
525 * </ul></p>
526 * <p><b>Available values for this device:</b><br></p>
527 * <p>{@link CameraCharacteristics#CONTROL_AE_AVAILABLE_ANTIBANDING_MODES android.control.aeAvailableAntibandingModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700528 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -0700529 *
530 * @see CameraCharacteristics#CONTROL_AE_AVAILABLE_ANTIBANDING_MODES
531 * @see CaptureRequest#CONTROL_AE_MODE
532 * @see CaptureRequest#CONTROL_MODE
533 * @see CaptureResult#STATISTICS_SCENE_FLICKER
534 * @see #CONTROL_AE_ANTIBANDING_MODE_OFF
535 * @see #CONTROL_AE_ANTIBANDING_MODE_50HZ
536 * @see #CONTROL_AE_ANTIBANDING_MODE_60HZ
537 * @see #CONTROL_AE_ANTIBANDING_MODE_AUTO
538 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700539 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -0700540 public static final Key<Integer> CONTROL_AE_ANTIBANDING_MODE =
541 new Key<Integer>("android.control.aeAntibandingMode", int.class);
542
543 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -0700544 * <p>Adjustment to auto-exposure (AE) target image
545 * brightness.</p>
546 * <p>The adjustment is measured as a count of steps, with the
547 * step size defined by {@link CameraCharacteristics#CONTROL_AE_COMPENSATION_STEP android.control.aeCompensationStep} and the
548 * allowed range by {@link CameraCharacteristics#CONTROL_AE_COMPENSATION_RANGE android.control.aeCompensationRange}.</p>
549 * <p>For example, if the exposure value (EV) step is 0.333, '6'
550 * will mean an exposure compensation of +2 EV; -3 will mean an
551 * exposure compensation of -1 EV. One EV represents a doubling
552 * of image brightness. Note that this control will only be
553 * effective if {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} <code>!=</code> OFF. This control
554 * will take effect even when {@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} <code>== true</code>.</p>
Yin-Chia Yeha4227df2014-05-05 14:27:39 -0700555 * <p>In the event of exposure compensation value being changed, camera device
556 * may take several frames to reach the newly requested exposure target.
557 * During that time, {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} field will be in the SEARCHING
558 * state. Once the new exposure target is reached, {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} will
559 * change from SEARCHING to either CONVERGED, LOCKED (if AE lock is enabled), or
560 * FLASH_REQUIRED (if the scene is too dark for still capture).</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700561 * <p><b>Units</b>: Compensation steps</p>
562 * <p><b>Range of valid values:</b><br>
563 * {@link CameraCharacteristics#CONTROL_AE_COMPENSATION_RANGE android.control.aeCompensationRange}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700564 * <p>This key is available on all devices.</p>
Yin-Chia Yeha4227df2014-05-05 14:27:39 -0700565 *
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -0700566 * @see CameraCharacteristics#CONTROL_AE_COMPENSATION_RANGE
567 * @see CameraCharacteristics#CONTROL_AE_COMPENSATION_STEP
Yin-Chia Yeha4227df2014-05-05 14:27:39 -0700568 * @see CaptureRequest#CONTROL_AE_LOCK
569 * @see CaptureRequest#CONTROL_AE_MODE
570 * @see CaptureResult#CONTROL_AE_STATE
Zhijun He379af012014-05-06 11:54:54 -0700571 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700572 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -0700573 public static final Key<Integer> CONTROL_AE_EXPOSURE_COMPENSATION =
574 new Key<Integer>("android.control.aeExposureCompensation", int.class);
575
576 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -0700577 * <p>Whether auto-exposure (AE) is currently locked to its latest
Zhijun He379af012014-05-06 11:54:54 -0700578 * calculated values.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700579 * <p>When set to <code>true</code> (ON), the AE algorithm is locked to its latest parameters,
580 * and will not change exposure settings until the lock is set to <code>false</code> (OFF).</p>
581 * <p>Note that even when AE is locked, the flash may be fired if
582 * the {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is ON_AUTO_FLASH /
583 * ON_ALWAYS_FLASH / ON_AUTO_FLASH_REDEYE.</p>
Yin-Chia Yeha4227df2014-05-05 14:27:39 -0700584 * <p>When {@link CaptureRequest#CONTROL_AE_EXPOSURE_COMPENSATION android.control.aeExposureCompensation} is changed, even if the AE lock
585 * is ON, the camera device will still adjust its exposure value.</p>
Zhijun He379af012014-05-06 11:54:54 -0700586 * <p>If AE precapture is triggered (see {@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger})
587 * when AE is already locked, the camera device will not change the exposure time
588 * ({@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime}) and sensitivity ({@link CaptureRequest#SENSOR_SENSITIVITY android.sensor.sensitivity})
589 * parameters. The flash may be fired if the {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode}
590 * is ON_AUTO_FLASH/ON_AUTO_FLASH_REDEYE and the scene is too dark. If the
Zhijun Hefa95b042015-02-09 10:40:49 -0800591 * {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is ON_ALWAYS_FLASH, the scene may become overexposed.
592 * Similarly, AE precapture trigger CANCEL has no effect when AE is already locked.</p>
593 * <p>When an AE precapture sequence is triggered, AE unlock will not be able to unlock
594 * the AE if AE is locked by the camera device internally during precapture metering
595 * sequence In other words, submitting requests with AE unlock has no effect for an
596 * ongoing precapture metering sequence. Otherwise, the precapture metering sequence
597 * will never succeed in a sequence of preview requests where AE lock is always set
598 * to <code>false</code>.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700599 * <p>Since the camera device has a pipeline of in-flight requests, the settings that
600 * get locked do not necessarily correspond to the settings that were present in the
601 * latest capture result received from the camera device, since additional captures
602 * and AE updates may have occurred even before the result was sent out. If an
603 * application is switching between automatic and manual control and wishes to eliminate
604 * any flicker during the switch, the following procedure is recommended:</p>
605 * <ol>
606 * <li>Starting in auto-AE mode:</li>
607 * <li>Lock AE</li>
608 * <li>Wait for the first result to be output that has the AE locked</li>
609 * <li>Copy exposure settings from that result into a request, set the request to manual AE</li>
610 * <li>Submit the capture request, proceed to run manual AE as desired.</li>
611 * </ol>
Zhijun He379af012014-05-06 11:54:54 -0700612 * <p>See {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} for AE lock related state transition details.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700613 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -0700614 *
Yin-Chia Yeha4227df2014-05-05 14:27:39 -0700615 * @see CaptureRequest#CONTROL_AE_EXPOSURE_COMPENSATION
Zhijun He379af012014-05-06 11:54:54 -0700616 * @see CaptureRequest#CONTROL_AE_MODE
617 * @see CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER
618 * @see CaptureResult#CONTROL_AE_STATE
619 * @see CaptureRequest#SENSOR_EXPOSURE_TIME
620 * @see CaptureRequest#SENSOR_SENSITIVITY
621 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700622 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -0700623 public static final Key<Boolean> CONTROL_AE_LOCK =
624 new Key<Boolean>("android.control.aeLock", boolean.class);
625
626 /**
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800627 * <p>The desired mode for the camera device's
628 * auto-exposure routine.</p>
629 * <p>This control is only effective if {@link CaptureRequest#CONTROL_MODE android.control.mode} is
630 * AUTO.</p>
631 * <p>When set to any of the ON modes, the camera device's
632 * auto-exposure routine is enabled, overriding the
633 * application's selected exposure time, sensor sensitivity,
634 * and frame duration ({@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime},
635 * {@link CaptureRequest#SENSOR_SENSITIVITY android.sensor.sensitivity}, and
636 * {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}). If one of the FLASH modes
637 * is selected, the camera device's flash unit controls are
638 * also overridden.</p>
639 * <p>The FLASH modes are only available if the camera device
640 * has a flash unit ({@link CameraCharacteristics#FLASH_INFO_AVAILABLE android.flash.info.available} is <code>true</code>).</p>
641 * <p>If flash TORCH mode is desired, this field must be set to
642 * ON or OFF, and {@link CaptureRequest#FLASH_MODE android.flash.mode} set to TORCH.</p>
643 * <p>When set to any of the ON modes, the values chosen by the
644 * camera device auto-exposure routine for the overridden
645 * fields for a given capture will be available in its
646 * CaptureResult.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700647 * <p><b>Possible values:</b>
648 * <ul>
649 * <li>{@link #CONTROL_AE_MODE_OFF OFF}</li>
650 * <li>{@link #CONTROL_AE_MODE_ON ON}</li>
651 * <li>{@link #CONTROL_AE_MODE_ON_AUTO_FLASH ON_AUTO_FLASH}</li>
652 * <li>{@link #CONTROL_AE_MODE_ON_ALWAYS_FLASH ON_ALWAYS_FLASH}</li>
653 * <li>{@link #CONTROL_AE_MODE_ON_AUTO_FLASH_REDEYE ON_AUTO_FLASH_REDEYE}</li>
654 * </ul></p>
655 * <p><b>Available values for this device:</b><br>
656 * {@link CameraCharacteristics#CONTROL_AE_AVAILABLE_MODES android.control.aeAvailableModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700657 * <p>This key is available on all devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800658 *
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700659 * @see CameraCharacteristics#CONTROL_AE_AVAILABLE_MODES
Zhijun He5f2a47f2014-01-16 15:44:41 -0800660 * @see CaptureRequest#CONTROL_MODE
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -0800661 * @see CameraCharacteristics#FLASH_INFO_AVAILABLE
662 * @see CaptureRequest#FLASH_MODE
Igor Murashkinaef3b7e2014-01-15 13:20:37 -0800663 * @see CaptureRequest#SENSOR_EXPOSURE_TIME
664 * @see CaptureRequest#SENSOR_FRAME_DURATION
Zhijun He399f05d2014-01-15 11:31:30 -0800665 * @see CaptureRequest#SENSOR_SENSITIVITY
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800666 * @see #CONTROL_AE_MODE_OFF
667 * @see #CONTROL_AE_MODE_ON
668 * @see #CONTROL_AE_MODE_ON_AUTO_FLASH
669 * @see #CONTROL_AE_MODE_ON_ALWAYS_FLASH
670 * @see #CONTROL_AE_MODE_ON_AUTO_FLASH_REDEYE
671 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700672 @PublicKey
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800673 public static final Key<Integer> CONTROL_AE_MODE =
674 new Key<Integer>("android.control.aeMode", int.class);
675
676 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700677 * <p>List of metering areas to use for auto-exposure adjustment.</p>
678 * <p>Not available if {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AE android.control.maxRegionsAe} is 0.
Yin-Chia Yeh808150f2014-09-08 15:48:47 -0700679 * Otherwise will always be present.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700680 * <p>The maximum number of regions supported by the device is determined by the value
681 * of {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AE android.control.maxRegionsAe}.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -0800682 * <p>The coordinate system is based on the active pixel array,
Timothy Knight2629f272013-09-03 17:23:23 -0700683 * with (0,0) being the top-left pixel in the active pixel array, and
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800684 * ({@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.width - 1,
685 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.height - 1) being the
Yin-Chia Yeh97f1c852014-05-28 16:36:05 -0700686 * bottom-right pixel in the active pixel array.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700687 * <p>The weight must be within <code>[0, 1000]</code>, and represents a weight
Yin-Chia Yeh97f1c852014-05-28 16:36:05 -0700688 * for every pixel in the area. This means that a large metering area
689 * with the same weight as a smaller area will have more effect in
690 * the metering result. Metering areas can partially overlap and the
691 * camera device will add the weights in the overlap region.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700692 * <p>The weights are relative to weights of other exposure metering regions, so if only one
693 * region is used, all non-zero weights will have the same effect. A region with 0
694 * weight is ignored.</p>
695 * <p>If all regions have 0 weight, then no specific metering area needs to be used by the
696 * camera device.</p>
697 * <p>If the metering region is outside the used {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} returned in
698 * capture result metadata, the camera device will ignore the sections outside the crop
699 * region and output only the intersection rectangle as the metering region in the result
700 * metadata. If the region is entirely outside the crop region, it will be ignored and
701 * not reported in the result metadata.</p>
702 * <p><b>Units</b>: Pixel coordinates within {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
703 * <p><b>Range of valid values:</b><br>
704 * Coordinates must be between <code>[(0,0), (width, height))</code> of
705 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
Yin-Chia Yeh808150f2014-09-08 15:48:47 -0700706 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800707 *
Yin-Chia Yeh808150f2014-09-08 15:48:47 -0700708 * @see CameraCharacteristics#CONTROL_MAX_REGIONS_AE
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -0800709 * @see CaptureRequest#SCALER_CROP_REGION
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -0800710 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700711 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700712 @PublicKey
Yin-Chia Yeh817f8932014-05-19 10:23:27 -0700713 public static final Key<android.hardware.camera2.params.MeteringRectangle[]> CONTROL_AE_REGIONS =
714 new Key<android.hardware.camera2.params.MeteringRectangle[]>("android.control.aeRegions", android.hardware.camera2.params.MeteringRectangle[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -0700715
716 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700717 * <p>Range over which the auto-exposure routine can
718 * adjust the capture frame rate to maintain good
719 * exposure.</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -0700720 * <p>Only constrains auto-exposure (AE) algorithm, not
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700721 * manual control of {@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime} and
722 * {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}.</p>
723 * <p><b>Units</b>: Frames per second (FPS)</p>
724 * <p><b>Range of valid values:</b><br>
725 * Any of the entries in {@link CameraCharacteristics#CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES android.control.aeAvailableTargetFpsRanges}</p>
726 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -0700727 *
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700728 * @see CameraCharacteristics#CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES
Zhijun He379af012014-05-06 11:54:54 -0700729 * @see CaptureRequest#SENSOR_EXPOSURE_TIME
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700730 * @see CaptureRequest#SENSOR_FRAME_DURATION
Zhijun He379af012014-05-06 11:54:54 -0700731 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700732 @PublicKey
Igor Murashkin78712a82014-05-27 18:32:18 -0700733 public static final Key<android.util.Range<Integer>> CONTROL_AE_TARGET_FPS_RANGE =
734 new Key<android.util.Range<Integer>>("android.control.aeTargetFpsRange", new TypeReference<android.util.Range<Integer>>() {{ }});
Zhijun He379af012014-05-06 11:54:54 -0700735
736 /**
737 * <p>Whether the camera device will trigger a precapture
738 * metering sequence when it processes this request.</p>
739 * <p>This entry is normally set to IDLE, or is not
740 * included at all in the request settings. When included and
Zhijun Hedd72be52015-02-06 13:49:51 -0800741 * set to START, the camera device will trigger the auto-exposure (AE)
Zhijun He379af012014-05-06 11:54:54 -0700742 * precapture metering sequence.</p>
Zhijun Hefa95b042015-02-09 10:40:49 -0800743 * <p>When set to CANCEL, the camera device will cancel any active
744 * precapture metering trigger, and return to its initial AE state.
745 * If a precapture metering sequence is already completed, and the camera
746 * device has implicitly locked the AE for subsequent still capture, the
747 * CANCEL trigger will unlock the AE and return to its initial AE state.</p>
Zhijun Hedd72be52015-02-06 13:49:51 -0800748 * <p>The precapture sequence should be triggered before starting a
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -0700749 * high-quality still capture for final metering decisions to
750 * be made, and for firing pre-capture flash pulses to estimate
751 * scene brightness and required final capture flash power, when
752 * the flash is enabled.</p>
753 * <p>Normally, this entry should be set to START for only a
754 * single request, and the application should wait until the
755 * sequence completes before starting a new one.</p>
Zhijun Hedd72be52015-02-06 13:49:51 -0800756 * <p>When a precapture metering sequence is finished, the camera device
757 * may lock the auto-exposure routine internally to be able to accurately expose the
758 * subsequent still capture image (<code>{@link CaptureRequest#CONTROL_CAPTURE_INTENT android.control.captureIntent} == STILL_CAPTURE</code>).
759 * For this case, the AE may not resume normal scan if no subsequent still capture is
760 * submitted. To ensure that the AE routine restarts normal scan, the application should
761 * submit a request with <code>{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} == true</code>, followed by a request
762 * with <code>{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} == false</code>, if the application decides not to submit a
Zhijun Hefa95b042015-02-09 10:40:49 -0800763 * still capture request after the precapture sequence completes. Alternatively, for
764 * API level 23 or newer devices, the CANCEL can be used to unlock the camera device
765 * internally locked AE if the application doesn't submit a still capture request after
766 * the AE precapture trigger. Note that, the CANCEL was added in API level 23, and must not
767 * be used in devices that have earlier API levels.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -0700768 * <p>The exact effect of auto-exposure (AE) precapture trigger
769 * depends on the current AE mode and state; see
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -0700770 * {@link CaptureResult#CONTROL_AE_STATE android.control.aeState} for AE precapture state transition
771 * details.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700772 * <p>On LEGACY-level devices, the precapture trigger is not supported;
773 * capturing a high-resolution JPEG image will automatically trigger a
774 * precapture sequence before the high-resolution capture, including
775 * potentially firing a pre-capture flash.</p>
776 * <p><b>Possible values:</b>
777 * <ul>
778 * <li>{@link #CONTROL_AE_PRECAPTURE_TRIGGER_IDLE IDLE}</li>
779 * <li>{@link #CONTROL_AE_PRECAPTURE_TRIGGER_START START}</li>
Zhijun Hefa95b042015-02-09 10:40:49 -0800780 * <li>{@link #CONTROL_AE_PRECAPTURE_TRIGGER_CANCEL CANCEL}</li>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -0700781 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700782 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
783 * <p><b>Limited capability</b> -
784 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
785 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun He379af012014-05-06 11:54:54 -0700786 *
Zhijun Hedd72be52015-02-06 13:49:51 -0800787 * @see CaptureRequest#CONTROL_AE_LOCK
Zhijun He379af012014-05-06 11:54:54 -0700788 * @see CaptureResult#CONTROL_AE_STATE
Zhijun Hedd72be52015-02-06 13:49:51 -0800789 * @see CaptureRequest#CONTROL_CAPTURE_INTENT
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -0700790 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun He379af012014-05-06 11:54:54 -0700791 * @see #CONTROL_AE_PRECAPTURE_TRIGGER_IDLE
792 * @see #CONTROL_AE_PRECAPTURE_TRIGGER_START
Zhijun Hefa95b042015-02-09 10:40:49 -0800793 * @see #CONTROL_AE_PRECAPTURE_TRIGGER_CANCEL
Zhijun He379af012014-05-06 11:54:54 -0700794 */
Igor Murashkin6c76f582014-07-15 17:19:49 -0700795 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -0700796 public static final Key<Integer> CONTROL_AE_PRECAPTURE_TRIGGER =
797 new Key<Integer>("android.control.aePrecaptureTrigger", int.class);
798
799 /**
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -0700800 * <p>Current state of the auto-exposure (AE) algorithm.</p>
Zhijun He228f4f92014-01-16 17:22:05 -0800801 * <p>Switching between or enabling AE modes ({@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode}) always
802 * resets the AE state to INACTIVE. Similarly, switching between {@link CaptureRequest#CONTROL_MODE android.control.mode},
803 * or {@link CaptureRequest#CONTROL_SCENE_MODE android.control.sceneMode} if <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code> resets all
804 * the algorithm states to INACTIVE.</p>
805 * <p>The camera device can do several state transitions between two results, if it is
806 * allowed by the state transition table. For example: INACTIVE may never actually be
807 * seen in a result.</p>
808 * <p>The state in the result is the state for this image (in sync with this image): if
809 * AE state becomes CONVERGED, then the image data associated with this result should
810 * be good to use.</p>
811 * <p>Below are state transition tables for different AE modes.</p>
812 * <table>
813 * <thead>
814 * <tr>
815 * <th align="center">State</th>
816 * <th align="center">Transition Cause</th>
817 * <th align="center">New State</th>
818 * <th align="center">Notes</th>
819 * </tr>
820 * </thead>
821 * <tbody>
822 * <tr>
823 * <td align="center">INACTIVE</td>
824 * <td align="center"></td>
825 * <td align="center">INACTIVE</td>
826 * <td align="center">Camera device auto exposure algorithm is disabled</td>
827 * </tr>
828 * </tbody>
829 * </table>
830 * <p>When {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is AE_MODE_ON_*:</p>
831 * <table>
832 * <thead>
833 * <tr>
834 * <th align="center">State</th>
835 * <th align="center">Transition Cause</th>
836 * <th align="center">New State</th>
837 * <th align="center">Notes</th>
838 * </tr>
839 * </thead>
840 * <tbody>
841 * <tr>
842 * <td align="center">INACTIVE</td>
843 * <td align="center">Camera device initiates AE scan</td>
844 * <td align="center">SEARCHING</td>
845 * <td align="center">Values changing</td>
846 * </tr>
847 * <tr>
848 * <td align="center">INACTIVE</td>
849 * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
850 * <td align="center">LOCKED</td>
851 * <td align="center">Values locked</td>
852 * </tr>
853 * <tr>
854 * <td align="center">SEARCHING</td>
855 * <td align="center">Camera device finishes AE scan</td>
856 * <td align="center">CONVERGED</td>
857 * <td align="center">Good values, not changing</td>
858 * </tr>
859 * <tr>
860 * <td align="center">SEARCHING</td>
861 * <td align="center">Camera device finishes AE scan</td>
862 * <td align="center">FLASH_REQUIRED</td>
863 * <td align="center">Converged but too dark w/o flash</td>
864 * </tr>
865 * <tr>
866 * <td align="center">SEARCHING</td>
867 * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
868 * <td align="center">LOCKED</td>
869 * <td align="center">Values locked</td>
870 * </tr>
871 * <tr>
872 * <td align="center">CONVERGED</td>
873 * <td align="center">Camera device initiates AE scan</td>
874 * <td align="center">SEARCHING</td>
875 * <td align="center">Values changing</td>
876 * </tr>
877 * <tr>
878 * <td align="center">CONVERGED</td>
879 * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
880 * <td align="center">LOCKED</td>
881 * <td align="center">Values locked</td>
882 * </tr>
883 * <tr>
884 * <td align="center">FLASH_REQUIRED</td>
885 * <td align="center">Camera device initiates AE scan</td>
886 * <td align="center">SEARCHING</td>
887 * <td align="center">Values changing</td>
888 * </tr>
889 * <tr>
890 * <td align="center">FLASH_REQUIRED</td>
891 * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
892 * <td align="center">LOCKED</td>
893 * <td align="center">Values locked</td>
894 * </tr>
895 * <tr>
896 * <td align="center">LOCKED</td>
897 * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
898 * <td align="center">SEARCHING</td>
899 * <td align="center">Values not good after unlock</td>
900 * </tr>
901 * <tr>
902 * <td align="center">LOCKED</td>
903 * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
904 * <td align="center">CONVERGED</td>
905 * <td align="center">Values good after unlock</td>
906 * </tr>
907 * <tr>
908 * <td align="center">LOCKED</td>
909 * <td align="center">{@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
910 * <td align="center">FLASH_REQUIRED</td>
911 * <td align="center">Exposure good, but too dark</td>
912 * </tr>
913 * <tr>
914 * <td align="center">PRECAPTURE</td>
915 * <td align="center">Sequence done. {@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is OFF</td>
916 * <td align="center">CONVERGED</td>
917 * <td align="center">Ready for high-quality capture</td>
918 * </tr>
919 * <tr>
920 * <td align="center">PRECAPTURE</td>
921 * <td align="center">Sequence done. {@link CaptureRequest#CONTROL_AE_LOCK android.control.aeLock} is ON</td>
922 * <td align="center">LOCKED</td>
923 * <td align="center">Ready for high-quality capture</td>
924 * </tr>
925 * <tr>
Zhijun Hefa95b042015-02-09 10:40:49 -0800926 * <td align="center">LOCKED</td>
927 * <td align="center">aeLock is ON and aePrecaptureTrigger is START</td>
928 * <td align="center">LOCKED</td>
929 * <td align="center">Precapture trigger is ignored when AE is already locked</td>
930 * </tr>
931 * <tr>
932 * <td align="center">LOCKED</td>
933 * <td align="center">aeLock is ON and aePrecaptureTrigger is CANCEL</td>
934 * <td align="center">LOCKED</td>
935 * <td align="center">Precapture trigger is ignored when AE is already locked</td>
936 * </tr>
937 * <tr>
938 * <td align="center">Any state (excluding LOCKED)</td>
Zhijun He228f4f92014-01-16 17:22:05 -0800939 * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is START</td>
940 * <td align="center">PRECAPTURE</td>
941 * <td align="center">Start AE precapture metering sequence</td>
942 * </tr>
Zhijun Hefa95b042015-02-09 10:40:49 -0800943 * <tr>
944 * <td align="center">Any state (excluding LOCKED)</td>
945 * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is CANCEL</td>
946 * <td align="center">INACTIVE</td>
947 * <td align="center">Currently active precapture metering sequence is canceled</td>
948 * </tr>
Zhijun He228f4f92014-01-16 17:22:05 -0800949 * </tbody>
950 * </table>
Zhijun He60b19dc2014-02-24 10:19:20 -0800951 * <p>For the above table, the camera device may skip reporting any state changes that happen
952 * without application intervention (i.e. mode switch, trigger, locking). Any state that
953 * can be skipped in that manner is called a transient state.</p>
954 * <p>For example, for above AE modes (AE_MODE_ON_*), in addition to the state transitions
955 * listed in above table, it is also legal for the camera device to skip one or more
956 * transient states between two results. See below table for examples:</p>
957 * <table>
958 * <thead>
959 * <tr>
960 * <th align="center">State</th>
961 * <th align="center">Transition Cause</th>
962 * <th align="center">New State</th>
963 * <th align="center">Notes</th>
964 * </tr>
965 * </thead>
966 * <tbody>
967 * <tr>
968 * <td align="center">INACTIVE</td>
969 * <td align="center">Camera device finished AE scan</td>
970 * <td align="center">CONVERGED</td>
971 * <td align="center">Values are already good, transient states are skipped by camera device.</td>
972 * </tr>
973 * <tr>
Zhijun Hefa95b042015-02-09 10:40:49 -0800974 * <td align="center">Any state (excluding LOCKED)</td>
Zhijun He60b19dc2014-02-24 10:19:20 -0800975 * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is START, sequence done</td>
976 * <td align="center">FLASH_REQUIRED</td>
977 * <td align="center">Converged but too dark w/o flash after a precapture sequence, transient states are skipped by camera device.</td>
978 * </tr>
979 * <tr>
Zhijun Hefa95b042015-02-09 10:40:49 -0800980 * <td align="center">Any state (excluding LOCKED)</td>
Zhijun He60b19dc2014-02-24 10:19:20 -0800981 * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is START, sequence done</td>
982 * <td align="center">CONVERGED</td>
983 * <td align="center">Converged after a precapture sequence, transient states are skipped by camera device.</td>
984 * </tr>
985 * <tr>
Zhijun Hefa95b042015-02-09 10:40:49 -0800986 * <td align="center">Any state (excluding LOCKED)</td>
987 * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is CANCEL, converged</td>
988 * <td align="center">FLASH_REQUIRED</td>
989 * <td align="center">Converged but too dark w/o flash after a precapture sequence is canceled, transient states are skipped by camera device.</td>
990 * </tr>
991 * <tr>
992 * <td align="center">Any state (excluding LOCKED)</td>
993 * <td align="center">{@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger} is CANCEL, converged</td>
994 * <td align="center">CONVERGED</td>
995 * <td align="center">Converged after a precapture sequenceis canceled, transient states are skipped by camera device.</td>
996 * </tr>
997 * <tr>
Zhijun He60b19dc2014-02-24 10:19:20 -0800998 * <td align="center">CONVERGED</td>
999 * <td align="center">Camera device finished AE scan</td>
1000 * <td align="center">FLASH_REQUIRED</td>
1001 * <td align="center">Converged but too dark w/o flash after a new scan, transient states are skipped by camera device.</td>
1002 * </tr>
1003 * <tr>
1004 * <td align="center">FLASH_REQUIRED</td>
1005 * <td align="center">Camera device finished AE scan</td>
1006 * <td align="center">CONVERGED</td>
1007 * <td align="center">Converged after a new scan, transient states are skipped by camera device.</td>
1008 * </tr>
1009 * </tbody>
1010 * </table>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001011 * <p><b>Possible values:</b>
1012 * <ul>
1013 * <li>{@link #CONTROL_AE_STATE_INACTIVE INACTIVE}</li>
1014 * <li>{@link #CONTROL_AE_STATE_SEARCHING SEARCHING}</li>
1015 * <li>{@link #CONTROL_AE_STATE_CONVERGED CONVERGED}</li>
1016 * <li>{@link #CONTROL_AE_STATE_LOCKED LOCKED}</li>
1017 * <li>{@link #CONTROL_AE_STATE_FLASH_REQUIRED FLASH_REQUIRED}</li>
1018 * <li>{@link #CONTROL_AE_STATE_PRECAPTURE PRECAPTURE}</li>
1019 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001020 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
1021 * <p><b>Limited capability</b> -
1022 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
1023 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun He228f4f92014-01-16 17:22:05 -08001024 *
1025 * @see CaptureRequest#CONTROL_AE_LOCK
1026 * @see CaptureRequest#CONTROL_AE_MODE
1027 * @see CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER
1028 * @see CaptureRequest#CONTROL_MODE
1029 * @see CaptureRequest#CONTROL_SCENE_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001030 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001031 * @see #CONTROL_AE_STATE_INACTIVE
1032 * @see #CONTROL_AE_STATE_SEARCHING
1033 * @see #CONTROL_AE_STATE_CONVERGED
1034 * @see #CONTROL_AE_STATE_LOCKED
1035 * @see #CONTROL_AE_STATE_FLASH_REQUIRED
1036 * @see #CONTROL_AE_STATE_PRECAPTURE
1037 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001038 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001039 public static final Key<Integer> CONTROL_AE_STATE =
1040 new Key<Integer>("android.control.aeState", int.class);
1041
1042 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07001043 * <p>Whether auto-focus (AF) is currently enabled, and what
1044 * mode it is set to.</p>
Zhijun Hecc28a412014-02-24 15:11:23 -08001045 * <p>Only effective if {@link CaptureRequest#CONTROL_MODE android.control.mode} = AUTO and the lens is not fixed focus
Yin-Chia Yeh7144b5d2014-11-12 11:42:49 -08001046 * (i.e. <code>{@link CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE android.lens.info.minimumFocusDistance} &gt; 0</code>). Also note that
1047 * when {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is OFF, the behavior of AF is device
1048 * dependent. It is recommended to lock AF by using {@link CaptureRequest#CONTROL_AF_TRIGGER android.control.afTrigger} before
1049 * setting {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} to OFF, or set AF mode to OFF when AE is OFF.</p>
Zhijun He78146ec2014-01-14 18:12:13 -08001050 * <p>If the lens is controlled by the camera device auto-focus algorithm,
Eino-Ville Talvalad8fd6792014-02-10 12:41:04 -08001051 * the camera device will report the current AF status in {@link CaptureResult#CONTROL_AF_STATE android.control.afState}
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001052 * in result metadata.</p>
1053 * <p><b>Possible values:</b>
1054 * <ul>
1055 * <li>{@link #CONTROL_AF_MODE_OFF OFF}</li>
1056 * <li>{@link #CONTROL_AF_MODE_AUTO AUTO}</li>
1057 * <li>{@link #CONTROL_AF_MODE_MACRO MACRO}</li>
1058 * <li>{@link #CONTROL_AF_MODE_CONTINUOUS_VIDEO CONTINUOUS_VIDEO}</li>
1059 * <li>{@link #CONTROL_AF_MODE_CONTINUOUS_PICTURE CONTINUOUS_PICTURE}</li>
1060 * <li>{@link #CONTROL_AF_MODE_EDOF EDOF}</li>
1061 * </ul></p>
1062 * <p><b>Available values for this device:</b><br>
1063 * {@link CameraCharacteristics#CONTROL_AF_AVAILABLE_MODES android.control.afAvailableModes}</p>
1064 * <p>This key is available on all devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001065 *
Yin-Chia Yeh7144b5d2014-11-12 11:42:49 -08001066 * @see CaptureRequest#CONTROL_AE_MODE
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001067 * @see CameraCharacteristics#CONTROL_AF_AVAILABLE_MODES
Eino-Ville Talvalad8fd6792014-02-10 12:41:04 -08001068 * @see CaptureResult#CONTROL_AF_STATE
Yin-Chia Yeh7144b5d2014-11-12 11:42:49 -08001069 * @see CaptureRequest#CONTROL_AF_TRIGGER
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001070 * @see CaptureRequest#CONTROL_MODE
Zhijun Hecc28a412014-02-24 15:11:23 -08001071 * @see CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001072 * @see #CONTROL_AF_MODE_OFF
1073 * @see #CONTROL_AF_MODE_AUTO
1074 * @see #CONTROL_AF_MODE_MACRO
1075 * @see #CONTROL_AF_MODE_CONTINUOUS_VIDEO
1076 * @see #CONTROL_AF_MODE_CONTINUOUS_PICTURE
1077 * @see #CONTROL_AF_MODE_EDOF
1078 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001079 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001080 public static final Key<Integer> CONTROL_AF_MODE =
1081 new Key<Integer>("android.control.afMode", int.class);
1082
1083 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001084 * <p>List of metering areas to use for auto-focus.</p>
1085 * <p>Not available if {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AF android.control.maxRegionsAf} is 0.
Yin-Chia Yeh808150f2014-09-08 15:48:47 -07001086 * Otherwise will always be present.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001087 * <p>The maximum number of focus areas supported by the device is determined by the value
1088 * of {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AF android.control.maxRegionsAf}.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -08001089 * <p>The coordinate system is based on the active pixel array,
Timothy Knight2629f272013-09-03 17:23:23 -07001090 * with (0,0) being the top-left pixel in the active pixel array, and
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001091 * ({@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.width - 1,
1092 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.height - 1) being the
Yin-Chia Yeh97f1c852014-05-28 16:36:05 -07001093 * bottom-right pixel in the active pixel array.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001094 * <p>The weight must be within <code>[0, 1000]</code>, and represents a weight
Yin-Chia Yeh97f1c852014-05-28 16:36:05 -07001095 * for every pixel in the area. This means that a large metering area
1096 * with the same weight as a smaller area will have more effect in
1097 * the metering result. Metering areas can partially overlap and the
1098 * camera device will add the weights in the overlap region.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001099 * <p>The weights are relative to weights of other metering regions, so if only one region
1100 * is used, all non-zero weights will have the same effect. A region with 0 weight is
1101 * ignored.</p>
1102 * <p>If all regions have 0 weight, then no specific metering area needs to be used by the
1103 * camera device.</p>
1104 * <p>If the metering region is outside the used {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} returned in
1105 * capture result metadata, the camera device will ignore the sections outside the crop
1106 * region and output only the intersection rectangle as the metering region in the result
1107 * metadata. If the region is entirely outside the crop region, it will be ignored and
1108 * not reported in the result metadata.</p>
1109 * <p><b>Units</b>: Pixel coordinates within {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
1110 * <p><b>Range of valid values:</b><br>
1111 * Coordinates must be between <code>[(0,0), (width, height))</code> of
1112 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
Yin-Chia Yeh808150f2014-09-08 15:48:47 -07001113 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001114 *
Yin-Chia Yeh808150f2014-09-08 15:48:47 -07001115 * @see CameraCharacteristics#CONTROL_MAX_REGIONS_AF
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001116 * @see CaptureRequest#SCALER_CROP_REGION
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -08001117 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001118 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001119 @PublicKey
Yin-Chia Yeh817f8932014-05-19 10:23:27 -07001120 public static final Key<android.hardware.camera2.params.MeteringRectangle[]> CONTROL_AF_REGIONS =
1121 new Key<android.hardware.camera2.params.MeteringRectangle[]>("android.control.afRegions", android.hardware.camera2.params.MeteringRectangle[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001122
1123 /**
Zhijun He379af012014-05-06 11:54:54 -07001124 * <p>Whether the camera device will trigger autofocus for this request.</p>
1125 * <p>This entry is normally set to IDLE, or is not
1126 * included at all in the request settings.</p>
1127 * <p>When included and set to START, the camera device will trigger the
1128 * autofocus algorithm. If autofocus is disabled, this trigger has no effect.</p>
1129 * <p>When set to CANCEL, the camera device will cancel any active trigger,
1130 * and return to its initial AF state.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001131 * <p>Generally, applications should set this entry to START or CANCEL for only a
1132 * single capture, and then return it to IDLE (or not set at all). Specifying
1133 * START for multiple captures in a row means restarting the AF operation over
1134 * and over again.</p>
1135 * <p>See {@link CaptureResult#CONTROL_AF_STATE android.control.afState} for what the trigger means for each AF mode.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001136 * <p><b>Possible values:</b>
1137 * <ul>
1138 * <li>{@link #CONTROL_AF_TRIGGER_IDLE IDLE}</li>
1139 * <li>{@link #CONTROL_AF_TRIGGER_START START}</li>
1140 * <li>{@link #CONTROL_AF_TRIGGER_CANCEL CANCEL}</li>
1141 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001142 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -07001143 *
1144 * @see CaptureResult#CONTROL_AF_STATE
1145 * @see #CONTROL_AF_TRIGGER_IDLE
1146 * @see #CONTROL_AF_TRIGGER_START
1147 * @see #CONTROL_AF_TRIGGER_CANCEL
1148 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001149 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07001150 public static final Key<Integer> CONTROL_AF_TRIGGER =
1151 new Key<Integer>("android.control.afTrigger", int.class);
1152
1153 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07001154 * <p>Current state of auto-focus (AF) algorithm.</p>
Zhijun He228f4f92014-01-16 17:22:05 -08001155 * <p>Switching between or enabling AF modes ({@link CaptureRequest#CONTROL_AF_MODE android.control.afMode}) always
1156 * resets the AF state to INACTIVE. Similarly, switching between {@link CaptureRequest#CONTROL_MODE android.control.mode},
1157 * or {@link CaptureRequest#CONTROL_SCENE_MODE android.control.sceneMode} if <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code> resets all
1158 * the algorithm states to INACTIVE.</p>
1159 * <p>The camera device can do several state transitions between two results, if it is
1160 * allowed by the state transition table. For example: INACTIVE may never actually be
1161 * seen in a result.</p>
1162 * <p>The state in the result is the state for this image (in sync with this image): if
1163 * AF state becomes FOCUSED, then the image data associated with this result should
1164 * be sharp.</p>
1165 * <p>Below are state transition tables for different AF modes.</p>
1166 * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_OFF or AF_MODE_EDOF:</p>
1167 * <table>
1168 * <thead>
1169 * <tr>
1170 * <th align="center">State</th>
1171 * <th align="center">Transition Cause</th>
1172 * <th align="center">New State</th>
1173 * <th align="center">Notes</th>
1174 * </tr>
1175 * </thead>
1176 * <tbody>
1177 * <tr>
1178 * <td align="center">INACTIVE</td>
1179 * <td align="center"></td>
1180 * <td align="center">INACTIVE</td>
1181 * <td align="center">Never changes</td>
1182 * </tr>
1183 * </tbody>
1184 * </table>
1185 * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_AUTO or AF_MODE_MACRO:</p>
1186 * <table>
1187 * <thead>
1188 * <tr>
1189 * <th align="center">State</th>
1190 * <th align="center">Transition Cause</th>
1191 * <th align="center">New State</th>
1192 * <th align="center">Notes</th>
1193 * </tr>
1194 * </thead>
1195 * <tbody>
1196 * <tr>
1197 * <td align="center">INACTIVE</td>
1198 * <td align="center">AF_TRIGGER</td>
1199 * <td align="center">ACTIVE_SCAN</td>
1200 * <td align="center">Start AF sweep, Lens now moving</td>
1201 * </tr>
1202 * <tr>
1203 * <td align="center">ACTIVE_SCAN</td>
1204 * <td align="center">AF sweep done</td>
1205 * <td align="center">FOCUSED_LOCKED</td>
1206 * <td align="center">Focused, Lens now locked</td>
1207 * </tr>
1208 * <tr>
1209 * <td align="center">ACTIVE_SCAN</td>
1210 * <td align="center">AF sweep done</td>
1211 * <td align="center">NOT_FOCUSED_LOCKED</td>
1212 * <td align="center">Not focused, Lens now locked</td>
1213 * </tr>
1214 * <tr>
1215 * <td align="center">ACTIVE_SCAN</td>
1216 * <td align="center">AF_CANCEL</td>
1217 * <td align="center">INACTIVE</td>
1218 * <td align="center">Cancel/reset AF, Lens now locked</td>
1219 * </tr>
1220 * <tr>
1221 * <td align="center">FOCUSED_LOCKED</td>
1222 * <td align="center">AF_CANCEL</td>
1223 * <td align="center">INACTIVE</td>
1224 * <td align="center">Cancel/reset AF</td>
1225 * </tr>
1226 * <tr>
1227 * <td align="center">FOCUSED_LOCKED</td>
1228 * <td align="center">AF_TRIGGER</td>
1229 * <td align="center">ACTIVE_SCAN</td>
1230 * <td align="center">Start new sweep, Lens now moving</td>
1231 * </tr>
1232 * <tr>
1233 * <td align="center">NOT_FOCUSED_LOCKED</td>
1234 * <td align="center">AF_CANCEL</td>
1235 * <td align="center">INACTIVE</td>
1236 * <td align="center">Cancel/reset AF</td>
1237 * </tr>
1238 * <tr>
1239 * <td align="center">NOT_FOCUSED_LOCKED</td>
1240 * <td align="center">AF_TRIGGER</td>
1241 * <td align="center">ACTIVE_SCAN</td>
1242 * <td align="center">Start new sweep, Lens now moving</td>
1243 * </tr>
1244 * <tr>
1245 * <td align="center">Any state</td>
1246 * <td align="center">Mode change</td>
1247 * <td align="center">INACTIVE</td>
1248 * <td align="center"></td>
1249 * </tr>
1250 * </tbody>
1251 * </table>
Zhijun He60b19dc2014-02-24 10:19:20 -08001252 * <p>For the above table, the camera device may skip reporting any state changes that happen
1253 * without application intervention (i.e. mode switch, trigger, locking). Any state that
1254 * can be skipped in that manner is called a transient state.</p>
1255 * <p>For example, for these AF modes (AF_MODE_AUTO and AF_MODE_MACRO), in addition to the
1256 * state transitions listed in above table, it is also legal for the camera device to skip
1257 * one or more transient states between two results. See below table for examples:</p>
1258 * <table>
1259 * <thead>
1260 * <tr>
1261 * <th align="center">State</th>
1262 * <th align="center">Transition Cause</th>
1263 * <th align="center">New State</th>
1264 * <th align="center">Notes</th>
1265 * </tr>
1266 * </thead>
1267 * <tbody>
1268 * <tr>
1269 * <td align="center">INACTIVE</td>
1270 * <td align="center">AF_TRIGGER</td>
1271 * <td align="center">FOCUSED_LOCKED</td>
1272 * <td align="center">Focus is already good or good after a scan, lens is now locked.</td>
1273 * </tr>
1274 * <tr>
1275 * <td align="center">INACTIVE</td>
1276 * <td align="center">AF_TRIGGER</td>
1277 * <td align="center">NOT_FOCUSED_LOCKED</td>
1278 * <td align="center">Focus failed after a scan, lens is now locked.</td>
1279 * </tr>
1280 * <tr>
1281 * <td align="center">FOCUSED_LOCKED</td>
1282 * <td align="center">AF_TRIGGER</td>
1283 * <td align="center">FOCUSED_LOCKED</td>
1284 * <td align="center">Focus is already good or good after a scan, lens is now locked.</td>
1285 * </tr>
1286 * <tr>
1287 * <td align="center">NOT_FOCUSED_LOCKED</td>
1288 * <td align="center">AF_TRIGGER</td>
1289 * <td align="center">FOCUSED_LOCKED</td>
1290 * <td align="center">Focus is good after a scan, lens is not locked.</td>
1291 * </tr>
1292 * </tbody>
1293 * </table>
Zhijun He228f4f92014-01-16 17:22:05 -08001294 * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_CONTINUOUS_VIDEO:</p>
1295 * <table>
1296 * <thead>
1297 * <tr>
1298 * <th align="center">State</th>
1299 * <th align="center">Transition Cause</th>
1300 * <th align="center">New State</th>
1301 * <th align="center">Notes</th>
1302 * </tr>
1303 * </thead>
1304 * <tbody>
1305 * <tr>
1306 * <td align="center">INACTIVE</td>
1307 * <td align="center">Camera device initiates new scan</td>
1308 * <td align="center">PASSIVE_SCAN</td>
1309 * <td align="center">Start AF scan, Lens now moving</td>
1310 * </tr>
1311 * <tr>
1312 * <td align="center">INACTIVE</td>
1313 * <td align="center">AF_TRIGGER</td>
1314 * <td align="center">NOT_FOCUSED_LOCKED</td>
1315 * <td align="center">AF state query, Lens now locked</td>
1316 * </tr>
1317 * <tr>
1318 * <td align="center">PASSIVE_SCAN</td>
1319 * <td align="center">Camera device completes current scan</td>
1320 * <td align="center">PASSIVE_FOCUSED</td>
1321 * <td align="center">End AF scan, Lens now locked</td>
1322 * </tr>
1323 * <tr>
1324 * <td align="center">PASSIVE_SCAN</td>
1325 * <td align="center">Camera device fails current scan</td>
1326 * <td align="center">PASSIVE_UNFOCUSED</td>
1327 * <td align="center">End AF scan, Lens now locked</td>
1328 * </tr>
1329 * <tr>
1330 * <td align="center">PASSIVE_SCAN</td>
1331 * <td align="center">AF_TRIGGER</td>
1332 * <td align="center">FOCUSED_LOCKED</td>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001333 * <td align="center">Immediate transition, if focus is good. Lens now locked</td>
Zhijun He228f4f92014-01-16 17:22:05 -08001334 * </tr>
1335 * <tr>
1336 * <td align="center">PASSIVE_SCAN</td>
1337 * <td align="center">AF_TRIGGER</td>
1338 * <td align="center">NOT_FOCUSED_LOCKED</td>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001339 * <td align="center">Immediate transition, if focus is bad. Lens now locked</td>
Zhijun He228f4f92014-01-16 17:22:05 -08001340 * </tr>
1341 * <tr>
1342 * <td align="center">PASSIVE_SCAN</td>
1343 * <td align="center">AF_CANCEL</td>
1344 * <td align="center">INACTIVE</td>
1345 * <td align="center">Reset lens position, Lens now locked</td>
1346 * </tr>
1347 * <tr>
1348 * <td align="center">PASSIVE_FOCUSED</td>
1349 * <td align="center">Camera device initiates new scan</td>
1350 * <td align="center">PASSIVE_SCAN</td>
1351 * <td align="center">Start AF scan, Lens now moving</td>
1352 * </tr>
1353 * <tr>
1354 * <td align="center">PASSIVE_UNFOCUSED</td>
1355 * <td align="center">Camera device initiates new scan</td>
1356 * <td align="center">PASSIVE_SCAN</td>
1357 * <td align="center">Start AF scan, Lens now moving</td>
1358 * </tr>
1359 * <tr>
1360 * <td align="center">PASSIVE_FOCUSED</td>
1361 * <td align="center">AF_TRIGGER</td>
1362 * <td align="center">FOCUSED_LOCKED</td>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001363 * <td align="center">Immediate transition, lens now locked</td>
Zhijun He228f4f92014-01-16 17:22:05 -08001364 * </tr>
1365 * <tr>
1366 * <td align="center">PASSIVE_UNFOCUSED</td>
1367 * <td align="center">AF_TRIGGER</td>
1368 * <td align="center">NOT_FOCUSED_LOCKED</td>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001369 * <td align="center">Immediate transition, lens now locked</td>
Zhijun He228f4f92014-01-16 17:22:05 -08001370 * </tr>
1371 * <tr>
1372 * <td align="center">FOCUSED_LOCKED</td>
1373 * <td align="center">AF_TRIGGER</td>
1374 * <td align="center">FOCUSED_LOCKED</td>
1375 * <td align="center">No effect</td>
1376 * </tr>
1377 * <tr>
1378 * <td align="center">FOCUSED_LOCKED</td>
1379 * <td align="center">AF_CANCEL</td>
1380 * <td align="center">INACTIVE</td>
1381 * <td align="center">Restart AF scan</td>
1382 * </tr>
1383 * <tr>
1384 * <td align="center">NOT_FOCUSED_LOCKED</td>
1385 * <td align="center">AF_TRIGGER</td>
1386 * <td align="center">NOT_FOCUSED_LOCKED</td>
1387 * <td align="center">No effect</td>
1388 * </tr>
1389 * <tr>
1390 * <td align="center">NOT_FOCUSED_LOCKED</td>
1391 * <td align="center">AF_CANCEL</td>
1392 * <td align="center">INACTIVE</td>
1393 * <td align="center">Restart AF scan</td>
1394 * </tr>
1395 * </tbody>
1396 * </table>
1397 * <p>When {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} is AF_MODE_CONTINUOUS_PICTURE:</p>
1398 * <table>
1399 * <thead>
1400 * <tr>
1401 * <th align="center">State</th>
1402 * <th align="center">Transition Cause</th>
1403 * <th align="center">New State</th>
1404 * <th align="center">Notes</th>
1405 * </tr>
1406 * </thead>
1407 * <tbody>
1408 * <tr>
1409 * <td align="center">INACTIVE</td>
1410 * <td align="center">Camera device initiates new scan</td>
1411 * <td align="center">PASSIVE_SCAN</td>
1412 * <td align="center">Start AF scan, Lens now moving</td>
1413 * </tr>
1414 * <tr>
1415 * <td align="center">INACTIVE</td>
1416 * <td align="center">AF_TRIGGER</td>
1417 * <td align="center">NOT_FOCUSED_LOCKED</td>
1418 * <td align="center">AF state query, Lens now locked</td>
1419 * </tr>
1420 * <tr>
1421 * <td align="center">PASSIVE_SCAN</td>
1422 * <td align="center">Camera device completes current scan</td>
1423 * <td align="center">PASSIVE_FOCUSED</td>
1424 * <td align="center">End AF scan, Lens now locked</td>
1425 * </tr>
1426 * <tr>
1427 * <td align="center">PASSIVE_SCAN</td>
1428 * <td align="center">Camera device fails current scan</td>
1429 * <td align="center">PASSIVE_UNFOCUSED</td>
1430 * <td align="center">End AF scan, Lens now locked</td>
1431 * </tr>
1432 * <tr>
1433 * <td align="center">PASSIVE_SCAN</td>
1434 * <td align="center">AF_TRIGGER</td>
1435 * <td align="center">FOCUSED_LOCKED</td>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001436 * <td align="center">Eventual transition once the focus is good. Lens now locked</td>
Zhijun He228f4f92014-01-16 17:22:05 -08001437 * </tr>
1438 * <tr>
1439 * <td align="center">PASSIVE_SCAN</td>
1440 * <td align="center">AF_TRIGGER</td>
1441 * <td align="center">NOT_FOCUSED_LOCKED</td>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001442 * <td align="center">Eventual transition if cannot find focus. Lens now locked</td>
Zhijun He228f4f92014-01-16 17:22:05 -08001443 * </tr>
1444 * <tr>
1445 * <td align="center">PASSIVE_SCAN</td>
1446 * <td align="center">AF_CANCEL</td>
1447 * <td align="center">INACTIVE</td>
1448 * <td align="center">Reset lens position, Lens now locked</td>
1449 * </tr>
1450 * <tr>
1451 * <td align="center">PASSIVE_FOCUSED</td>
1452 * <td align="center">Camera device initiates new scan</td>
1453 * <td align="center">PASSIVE_SCAN</td>
1454 * <td align="center">Start AF scan, Lens now moving</td>
1455 * </tr>
1456 * <tr>
1457 * <td align="center">PASSIVE_UNFOCUSED</td>
1458 * <td align="center">Camera device initiates new scan</td>
1459 * <td align="center">PASSIVE_SCAN</td>
1460 * <td align="center">Start AF scan, Lens now moving</td>
1461 * </tr>
1462 * <tr>
1463 * <td align="center">PASSIVE_FOCUSED</td>
1464 * <td align="center">AF_TRIGGER</td>
1465 * <td align="center">FOCUSED_LOCKED</td>
1466 * <td align="center">Immediate trans. Lens now locked</td>
1467 * </tr>
1468 * <tr>
1469 * <td align="center">PASSIVE_UNFOCUSED</td>
1470 * <td align="center">AF_TRIGGER</td>
1471 * <td align="center">NOT_FOCUSED_LOCKED</td>
1472 * <td align="center">Immediate trans. Lens now locked</td>
1473 * </tr>
1474 * <tr>
1475 * <td align="center">FOCUSED_LOCKED</td>
1476 * <td align="center">AF_TRIGGER</td>
1477 * <td align="center">FOCUSED_LOCKED</td>
1478 * <td align="center">No effect</td>
1479 * </tr>
1480 * <tr>
1481 * <td align="center">FOCUSED_LOCKED</td>
1482 * <td align="center">AF_CANCEL</td>
1483 * <td align="center">INACTIVE</td>
1484 * <td align="center">Restart AF scan</td>
1485 * </tr>
1486 * <tr>
1487 * <td align="center">NOT_FOCUSED_LOCKED</td>
1488 * <td align="center">AF_TRIGGER</td>
1489 * <td align="center">NOT_FOCUSED_LOCKED</td>
1490 * <td align="center">No effect</td>
1491 * </tr>
1492 * <tr>
1493 * <td align="center">NOT_FOCUSED_LOCKED</td>
1494 * <td align="center">AF_CANCEL</td>
1495 * <td align="center">INACTIVE</td>
1496 * <td align="center">Restart AF scan</td>
1497 * </tr>
1498 * </tbody>
1499 * </table>
Zhijun He60b19dc2014-02-24 10:19:20 -08001500 * <p>When switch between AF_MODE_CONTINUOUS_* (CAF modes) and AF_MODE_AUTO/AF_MODE_MACRO
1501 * (AUTO modes), the initial INACTIVE or PASSIVE_SCAN states may be skipped by the
1502 * camera device. When a trigger is included in a mode switch request, the trigger
1503 * will be evaluated in the context of the new mode in the request.
1504 * See below table for examples:</p>
1505 * <table>
1506 * <thead>
1507 * <tr>
1508 * <th align="center">State</th>
1509 * <th align="center">Transition Cause</th>
1510 * <th align="center">New State</th>
1511 * <th align="center">Notes</th>
1512 * </tr>
1513 * </thead>
1514 * <tbody>
1515 * <tr>
1516 * <td align="center">any state</td>
1517 * <td align="center">CAF--&gt;AUTO mode switch</td>
1518 * <td align="center">INACTIVE</td>
1519 * <td align="center">Mode switch without trigger, initial state must be INACTIVE</td>
1520 * </tr>
1521 * <tr>
1522 * <td align="center">any state</td>
1523 * <td align="center">CAF--&gt;AUTO mode switch with AF_TRIGGER</td>
1524 * <td align="center">trigger-reachable states from INACTIVE</td>
1525 * <td align="center">Mode switch with trigger, INACTIVE is skipped</td>
1526 * </tr>
1527 * <tr>
1528 * <td align="center">any state</td>
1529 * <td align="center">AUTO--&gt;CAF mode switch</td>
1530 * <td align="center">passively reachable states from INACTIVE</td>
1531 * <td align="center">Mode switch without trigger, passive transient state is skipped</td>
1532 * </tr>
1533 * </tbody>
1534 * </table>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001535 * <p><b>Possible values:</b>
1536 * <ul>
1537 * <li>{@link #CONTROL_AF_STATE_INACTIVE INACTIVE}</li>
1538 * <li>{@link #CONTROL_AF_STATE_PASSIVE_SCAN PASSIVE_SCAN}</li>
1539 * <li>{@link #CONTROL_AF_STATE_PASSIVE_FOCUSED PASSIVE_FOCUSED}</li>
1540 * <li>{@link #CONTROL_AF_STATE_ACTIVE_SCAN ACTIVE_SCAN}</li>
1541 * <li>{@link #CONTROL_AF_STATE_FOCUSED_LOCKED FOCUSED_LOCKED}</li>
1542 * <li>{@link #CONTROL_AF_STATE_NOT_FOCUSED_LOCKED NOT_FOCUSED_LOCKED}</li>
1543 * <li>{@link #CONTROL_AF_STATE_PASSIVE_UNFOCUSED PASSIVE_UNFOCUSED}</li>
1544 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001545 * <p>This key is available on all devices.</p>
Zhijun He228f4f92014-01-16 17:22:05 -08001546 *
1547 * @see CaptureRequest#CONTROL_AF_MODE
1548 * @see CaptureRequest#CONTROL_MODE
1549 * @see CaptureRequest#CONTROL_SCENE_MODE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001550 * @see #CONTROL_AF_STATE_INACTIVE
1551 * @see #CONTROL_AF_STATE_PASSIVE_SCAN
1552 * @see #CONTROL_AF_STATE_PASSIVE_FOCUSED
1553 * @see #CONTROL_AF_STATE_ACTIVE_SCAN
1554 * @see #CONTROL_AF_STATE_FOCUSED_LOCKED
1555 * @see #CONTROL_AF_STATE_NOT_FOCUSED_LOCKED
Eino-Ville Talvala9f880f72013-09-20 17:50:41 -07001556 * @see #CONTROL_AF_STATE_PASSIVE_UNFOCUSED
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001557 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001558 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001559 public static final Key<Integer> CONTROL_AF_STATE =
1560 new Key<Integer>("android.control.afState", int.class);
1561
1562 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07001563 * <p>Whether auto-white balance (AWB) is currently locked to its
Zhijun He379af012014-05-06 11:54:54 -07001564 * latest calculated values.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001565 * <p>When set to <code>true</code> (ON), the AWB algorithm is locked to its latest parameters,
1566 * and will not change color balance settings until the lock is set to <code>false</code> (OFF).</p>
1567 * <p>Since the camera device has a pipeline of in-flight requests, the settings that
1568 * get locked do not necessarily correspond to the settings that were present in the
1569 * latest capture result received from the camera device, since additional captures
1570 * and AWB updates may have occurred even before the result was sent out. If an
1571 * application is switching between automatic and manual control and wishes to eliminate
1572 * any flicker during the switch, the following procedure is recommended:</p>
1573 * <ol>
1574 * <li>Starting in auto-AWB mode:</li>
1575 * <li>Lock AWB</li>
1576 * <li>Wait for the first result to be output that has the AWB locked</li>
1577 * <li>Copy AWB settings from that result into a request, set the request to manual AWB</li>
1578 * <li>Submit the capture request, proceed to run manual AWB as desired.</li>
1579 * </ol>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001580 * <p>Note that AWB lock is only meaningful when
1581 * {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} is in the AUTO mode; in other modes,
1582 * AWB is already fixed to a specific setting.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001583 * <p>Some LEGACY devices may not support ON; the value is then overridden to OFF.</p>
1584 * <p>This key is available on all devices.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001585 *
1586 * @see CaptureRequest#CONTROL_AWB_MODE
Zhijun He379af012014-05-06 11:54:54 -07001587 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001588 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07001589 public static final Key<Boolean> CONTROL_AWB_LOCK =
1590 new Key<Boolean>("android.control.awbLock", boolean.class);
1591
1592 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07001593 * <p>Whether auto-white balance (AWB) is currently setting the color
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001594 * transform fields, and what its illumination target
Zhijun Hecc28a412014-02-24 15:11:23 -08001595 * is.</p>
Zhijun He399f05d2014-01-15 11:31:30 -08001596 * <p>This control is only effective if {@link CaptureRequest#CONTROL_MODE android.control.mode} is AUTO.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001597 * <p>When set to the ON mode, the camera device's auto-white balance
Zhijun He399f05d2014-01-15 11:31:30 -08001598 * routine is enabled, overriding the application's selected
1599 * {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform}, {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} and
Yin-Chia Yeh7144b5d2014-11-12 11:42:49 -08001600 * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode}. Note that when {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode}
1601 * is OFF, the behavior of AWB is device dependent. It is recommened to
1602 * also set AWB mode to OFF or lock AWB by using {@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} before
1603 * setting AE mode to OFF.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001604 * <p>When set to the OFF mode, the camera device's auto-white balance
Zhijun Hecc28a412014-02-24 15:11:23 -08001605 * routine is disabled. The application manually controls the white
Eino-Ville Talvalad8fd6792014-02-10 12:41:04 -08001606 * balance by {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform}, {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains}
Zhijun He399f05d2014-01-15 11:31:30 -08001607 * and {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode}.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001608 * <p>When set to any other modes, the camera device's auto-white
1609 * balance routine is disabled. The camera device uses each
1610 * particular illumination target for white balance
1611 * adjustment. The application's values for
1612 * {@link CaptureRequest#COLOR_CORRECTION_TRANSFORM android.colorCorrection.transform},
1613 * {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} and
1614 * {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} are ignored.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001615 * <p><b>Possible values:</b>
1616 * <ul>
1617 * <li>{@link #CONTROL_AWB_MODE_OFF OFF}</li>
1618 * <li>{@link #CONTROL_AWB_MODE_AUTO AUTO}</li>
1619 * <li>{@link #CONTROL_AWB_MODE_INCANDESCENT INCANDESCENT}</li>
1620 * <li>{@link #CONTROL_AWB_MODE_FLUORESCENT FLUORESCENT}</li>
1621 * <li>{@link #CONTROL_AWB_MODE_WARM_FLUORESCENT WARM_FLUORESCENT}</li>
1622 * <li>{@link #CONTROL_AWB_MODE_DAYLIGHT DAYLIGHT}</li>
1623 * <li>{@link #CONTROL_AWB_MODE_CLOUDY_DAYLIGHT CLOUDY_DAYLIGHT}</li>
1624 * <li>{@link #CONTROL_AWB_MODE_TWILIGHT TWILIGHT}</li>
1625 * <li>{@link #CONTROL_AWB_MODE_SHADE SHADE}</li>
1626 * </ul></p>
1627 * <p><b>Available values for this device:</b><br>
1628 * {@link CameraCharacteristics#CONTROL_AWB_AVAILABLE_MODES android.control.awbAvailableModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001629 * <p>This key is available on all devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001630 *
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -08001631 * @see CaptureRequest#COLOR_CORRECTION_GAINS
Zhijun He5f2a47f2014-01-16 15:44:41 -08001632 * @see CaptureRequest#COLOR_CORRECTION_MODE
1633 * @see CaptureRequest#COLOR_CORRECTION_TRANSFORM
Yin-Chia Yeh7144b5d2014-11-12 11:42:49 -08001634 * @see CaptureRequest#CONTROL_AE_MODE
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001635 * @see CameraCharacteristics#CONTROL_AWB_AVAILABLE_MODES
Yin-Chia Yeh7144b5d2014-11-12 11:42:49 -08001636 * @see CaptureRequest#CONTROL_AWB_LOCK
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -08001637 * @see CaptureRequest#CONTROL_MODE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001638 * @see #CONTROL_AWB_MODE_OFF
1639 * @see #CONTROL_AWB_MODE_AUTO
1640 * @see #CONTROL_AWB_MODE_INCANDESCENT
1641 * @see #CONTROL_AWB_MODE_FLUORESCENT
1642 * @see #CONTROL_AWB_MODE_WARM_FLUORESCENT
1643 * @see #CONTROL_AWB_MODE_DAYLIGHT
1644 * @see #CONTROL_AWB_MODE_CLOUDY_DAYLIGHT
1645 * @see #CONTROL_AWB_MODE_TWILIGHT
1646 * @see #CONTROL_AWB_MODE_SHADE
1647 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001648 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001649 public static final Key<Integer> CONTROL_AWB_MODE =
1650 new Key<Integer>("android.control.awbMode", int.class);
1651
1652 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001653 * <p>List of metering areas to use for auto-white-balance illuminant
Ruben Brunkf59521d2014-02-03 17:14:33 -08001654 * estimation.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001655 * <p>Not available if {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AWB android.control.maxRegionsAwb} is 0.
Yin-Chia Yeh808150f2014-09-08 15:48:47 -07001656 * Otherwise will always be present.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001657 * <p>The maximum number of regions supported by the device is determined by the value
1658 * of {@link CameraCharacteristics#CONTROL_MAX_REGIONS_AWB android.control.maxRegionsAwb}.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -08001659 * <p>The coordinate system is based on the active pixel array,
Timothy Knight2629f272013-09-03 17:23:23 -07001660 * with (0,0) being the top-left pixel in the active pixel array, and
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001661 * ({@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.width - 1,
1662 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.height - 1) being the
Yin-Chia Yeh97f1c852014-05-28 16:36:05 -07001663 * bottom-right pixel in the active pixel array.</p>
1664 * <p>The weight must range from 0 to 1000, and represents a weight
1665 * for every pixel in the area. This means that a large metering area
1666 * with the same weight as a smaller area will have more effect in
1667 * the metering result. Metering areas can partially overlap and the
1668 * camera device will add the weights in the overlap region.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001669 * <p>The weights are relative to weights of other white balance metering regions, so if
1670 * only one region is used, all non-zero weights will have the same effect. A region with
1671 * 0 weight is ignored.</p>
1672 * <p>If all regions have 0 weight, then no specific metering area needs to be used by the
1673 * camera device.</p>
1674 * <p>If the metering region is outside the used {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} returned in
1675 * capture result metadata, the camera device will ignore the sections outside the crop
1676 * region and output only the intersection rectangle as the metering region in the result
1677 * metadata. If the region is entirely outside the crop region, it will be ignored and
1678 * not reported in the result metadata.</p>
1679 * <p><b>Units</b>: Pixel coordinates within {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
1680 * <p><b>Range of valid values:</b><br>
1681 * Coordinates must be between <code>[(0,0), (width, height))</code> of
1682 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
Yin-Chia Yeh808150f2014-09-08 15:48:47 -07001683 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001684 *
Yin-Chia Yeh808150f2014-09-08 15:48:47 -07001685 * @see CameraCharacteristics#CONTROL_MAX_REGIONS_AWB
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001686 * @see CaptureRequest#SCALER_CROP_REGION
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -08001687 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001688 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001689 @PublicKey
Yin-Chia Yeh817f8932014-05-19 10:23:27 -07001690 public static final Key<android.hardware.camera2.params.MeteringRectangle[]> CONTROL_AWB_REGIONS =
1691 new Key<android.hardware.camera2.params.MeteringRectangle[]>("android.control.awbRegions", android.hardware.camera2.params.MeteringRectangle[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001692
1693 /**
Zhijun He379af012014-05-06 11:54:54 -07001694 * <p>Information to the camera device 3A (auto-exposure,
1695 * auto-focus, auto-white balance) routines about the purpose
1696 * of this capture, to help the camera device to decide optimal 3A
1697 * strategy.</p>
1698 * <p>This control (except for MANUAL) is only effective if
1699 * <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} != OFF</code> and any 3A routine is active.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001700 * <p>ZERO_SHUTTER_LAG will be supported if {@link CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES android.request.availableCapabilities}
Zhijun He513f7c32015-04-24 18:23:54 -07001701 * contains OPAQUE_REPROCESSING or YUV_REPROCESSING. MANUAL will be supported if
1702 * {@link CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES android.request.availableCapabilities} contains MANUAL_SENSOR. Other intent values are
1703 * always supported.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001704 * <p><b>Possible values:</b>
1705 * <ul>
1706 * <li>{@link #CONTROL_CAPTURE_INTENT_CUSTOM CUSTOM}</li>
1707 * <li>{@link #CONTROL_CAPTURE_INTENT_PREVIEW PREVIEW}</li>
1708 * <li>{@link #CONTROL_CAPTURE_INTENT_STILL_CAPTURE STILL_CAPTURE}</li>
1709 * <li>{@link #CONTROL_CAPTURE_INTENT_VIDEO_RECORD VIDEO_RECORD}</li>
1710 * <li>{@link #CONTROL_CAPTURE_INTENT_VIDEO_SNAPSHOT VIDEO_SNAPSHOT}</li>
1711 * <li>{@link #CONTROL_CAPTURE_INTENT_ZERO_SHUTTER_LAG ZERO_SHUTTER_LAG}</li>
1712 * <li>{@link #CONTROL_CAPTURE_INTENT_MANUAL MANUAL}</li>
1713 * </ul></p>
1714 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -07001715 *
1716 * @see CaptureRequest#CONTROL_MODE
1717 * @see CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES
1718 * @see #CONTROL_CAPTURE_INTENT_CUSTOM
1719 * @see #CONTROL_CAPTURE_INTENT_PREVIEW
1720 * @see #CONTROL_CAPTURE_INTENT_STILL_CAPTURE
1721 * @see #CONTROL_CAPTURE_INTENT_VIDEO_RECORD
1722 * @see #CONTROL_CAPTURE_INTENT_VIDEO_SNAPSHOT
1723 * @see #CONTROL_CAPTURE_INTENT_ZERO_SHUTTER_LAG
1724 * @see #CONTROL_CAPTURE_INTENT_MANUAL
1725 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001726 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07001727 public static final Key<Integer> CONTROL_CAPTURE_INTENT =
1728 new Key<Integer>("android.control.captureIntent", int.class);
1729
1730 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07001731 * <p>Current state of auto-white balance (AWB) algorithm.</p>
Zhijun He228f4f92014-01-16 17:22:05 -08001732 * <p>Switching between or enabling AWB modes ({@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode}) always
1733 * resets the AWB state to INACTIVE. Similarly, switching between {@link CaptureRequest#CONTROL_MODE android.control.mode},
1734 * or {@link CaptureRequest#CONTROL_SCENE_MODE android.control.sceneMode} if <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code> resets all
1735 * the algorithm states to INACTIVE.</p>
1736 * <p>The camera device can do several state transitions between two results, if it is
1737 * allowed by the state transition table. So INACTIVE may never actually be seen in
1738 * a result.</p>
1739 * <p>The state in the result is the state for this image (in sync with this image): if
1740 * AWB state becomes CONVERGED, then the image data associated with this result should
1741 * be good to use.</p>
1742 * <p>Below are state transition tables for different AWB modes.</p>
1743 * <p>When <code>{@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} != AWB_MODE_AUTO</code>:</p>
1744 * <table>
1745 * <thead>
1746 * <tr>
1747 * <th align="center">State</th>
1748 * <th align="center">Transition Cause</th>
1749 * <th align="center">New State</th>
1750 * <th align="center">Notes</th>
1751 * </tr>
1752 * </thead>
1753 * <tbody>
1754 * <tr>
1755 * <td align="center">INACTIVE</td>
1756 * <td align="center"></td>
1757 * <td align="center">INACTIVE</td>
1758 * <td align="center">Camera device auto white balance algorithm is disabled</td>
1759 * </tr>
1760 * </tbody>
1761 * </table>
1762 * <p>When {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} is AWB_MODE_AUTO:</p>
1763 * <table>
1764 * <thead>
1765 * <tr>
1766 * <th align="center">State</th>
1767 * <th align="center">Transition Cause</th>
1768 * <th align="center">New State</th>
1769 * <th align="center">Notes</th>
1770 * </tr>
1771 * </thead>
1772 * <tbody>
1773 * <tr>
1774 * <td align="center">INACTIVE</td>
1775 * <td align="center">Camera device initiates AWB scan</td>
1776 * <td align="center">SEARCHING</td>
1777 * <td align="center">Values changing</td>
1778 * </tr>
1779 * <tr>
1780 * <td align="center">INACTIVE</td>
1781 * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is ON</td>
1782 * <td align="center">LOCKED</td>
1783 * <td align="center">Values locked</td>
1784 * </tr>
1785 * <tr>
1786 * <td align="center">SEARCHING</td>
1787 * <td align="center">Camera device finishes AWB scan</td>
1788 * <td align="center">CONVERGED</td>
1789 * <td align="center">Good values, not changing</td>
1790 * </tr>
1791 * <tr>
1792 * <td align="center">SEARCHING</td>
1793 * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is ON</td>
1794 * <td align="center">LOCKED</td>
1795 * <td align="center">Values locked</td>
1796 * </tr>
1797 * <tr>
1798 * <td align="center">CONVERGED</td>
1799 * <td align="center">Camera device initiates AWB scan</td>
1800 * <td align="center">SEARCHING</td>
1801 * <td align="center">Values changing</td>
1802 * </tr>
1803 * <tr>
1804 * <td align="center">CONVERGED</td>
1805 * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is ON</td>
1806 * <td align="center">LOCKED</td>
1807 * <td align="center">Values locked</td>
1808 * </tr>
1809 * <tr>
1810 * <td align="center">LOCKED</td>
1811 * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is OFF</td>
1812 * <td align="center">SEARCHING</td>
1813 * <td align="center">Values not good after unlock</td>
1814 * </tr>
Zhijun He60b19dc2014-02-24 10:19:20 -08001815 * </tbody>
1816 * </table>
1817 * <p>For the above table, the camera device may skip reporting any state changes that happen
1818 * without application intervention (i.e. mode switch, trigger, locking). Any state that
1819 * can be skipped in that manner is called a transient state.</p>
1820 * <p>For example, for this AWB mode (AWB_MODE_AUTO), in addition to the state transitions
1821 * listed in above table, it is also legal for the camera device to skip one or more
1822 * transient states between two results. See below table for examples:</p>
1823 * <table>
1824 * <thead>
1825 * <tr>
1826 * <th align="center">State</th>
1827 * <th align="center">Transition Cause</th>
1828 * <th align="center">New State</th>
1829 * <th align="center">Notes</th>
1830 * </tr>
1831 * </thead>
1832 * <tbody>
1833 * <tr>
1834 * <td align="center">INACTIVE</td>
1835 * <td align="center">Camera device finished AWB scan</td>
1836 * <td align="center">CONVERGED</td>
1837 * <td align="center">Values are already good, transient states are skipped by camera device.</td>
1838 * </tr>
Zhijun He228f4f92014-01-16 17:22:05 -08001839 * <tr>
1840 * <td align="center">LOCKED</td>
1841 * <td align="center">{@link CaptureRequest#CONTROL_AWB_LOCK android.control.awbLock} is OFF</td>
1842 * <td align="center">CONVERGED</td>
Zhijun He60b19dc2014-02-24 10:19:20 -08001843 * <td align="center">Values good after unlock, transient states are skipped by camera device.</td>
Zhijun He228f4f92014-01-16 17:22:05 -08001844 * </tr>
1845 * </tbody>
1846 * </table>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001847 * <p><b>Possible values:</b>
1848 * <ul>
1849 * <li>{@link #CONTROL_AWB_STATE_INACTIVE INACTIVE}</li>
1850 * <li>{@link #CONTROL_AWB_STATE_SEARCHING SEARCHING}</li>
1851 * <li>{@link #CONTROL_AWB_STATE_CONVERGED CONVERGED}</li>
1852 * <li>{@link #CONTROL_AWB_STATE_LOCKED LOCKED}</li>
1853 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001854 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
1855 * <p><b>Limited capability</b> -
1856 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
1857 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun He228f4f92014-01-16 17:22:05 -08001858 *
1859 * @see CaptureRequest#CONTROL_AWB_LOCK
1860 * @see CaptureRequest#CONTROL_AWB_MODE
1861 * @see CaptureRequest#CONTROL_MODE
1862 * @see CaptureRequest#CONTROL_SCENE_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001863 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001864 * @see #CONTROL_AWB_STATE_INACTIVE
1865 * @see #CONTROL_AWB_STATE_SEARCHING
1866 * @see #CONTROL_AWB_STATE_CONVERGED
1867 * @see #CONTROL_AWB_STATE_LOCKED
1868 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001869 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001870 public static final Key<Integer> CONTROL_AWB_STATE =
1871 new Key<Integer>("android.control.awbState", int.class);
1872
1873 /**
Zhijun He379af012014-05-06 11:54:54 -07001874 * <p>A special color effect to apply.</p>
1875 * <p>When this mode is set, a color effect will be applied
1876 * to images produced by the camera device. The interpretation
1877 * and implementation of these color effects is left to the
1878 * implementor of the camera device, and should not be
1879 * depended on to be consistent (or present) across all
1880 * devices.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001881 * <p><b>Possible values:</b>
1882 * <ul>
1883 * <li>{@link #CONTROL_EFFECT_MODE_OFF OFF}</li>
1884 * <li>{@link #CONTROL_EFFECT_MODE_MONO MONO}</li>
1885 * <li>{@link #CONTROL_EFFECT_MODE_NEGATIVE NEGATIVE}</li>
1886 * <li>{@link #CONTROL_EFFECT_MODE_SOLARIZE SOLARIZE}</li>
1887 * <li>{@link #CONTROL_EFFECT_MODE_SEPIA SEPIA}</li>
1888 * <li>{@link #CONTROL_EFFECT_MODE_POSTERIZE POSTERIZE}</li>
1889 * <li>{@link #CONTROL_EFFECT_MODE_WHITEBOARD WHITEBOARD}</li>
1890 * <li>{@link #CONTROL_EFFECT_MODE_BLACKBOARD BLACKBOARD}</li>
1891 * <li>{@link #CONTROL_EFFECT_MODE_AQUA AQUA}</li>
1892 * </ul></p>
1893 * <p><b>Available values for this device:</b><br>
1894 * {@link CameraCharacteristics#CONTROL_AVAILABLE_EFFECTS android.control.availableEffects}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001895 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -07001896 *
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001897 * @see CameraCharacteristics#CONTROL_AVAILABLE_EFFECTS
Zhijun He379af012014-05-06 11:54:54 -07001898 * @see #CONTROL_EFFECT_MODE_OFF
1899 * @see #CONTROL_EFFECT_MODE_MONO
1900 * @see #CONTROL_EFFECT_MODE_NEGATIVE
1901 * @see #CONTROL_EFFECT_MODE_SOLARIZE
1902 * @see #CONTROL_EFFECT_MODE_SEPIA
1903 * @see #CONTROL_EFFECT_MODE_POSTERIZE
1904 * @see #CONTROL_EFFECT_MODE_WHITEBOARD
1905 * @see #CONTROL_EFFECT_MODE_BLACKBOARD
1906 * @see #CONTROL_EFFECT_MODE_AQUA
1907 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001908 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07001909 public static final Key<Integer> CONTROL_EFFECT_MODE =
1910 new Key<Integer>("android.control.effectMode", int.class);
1911
1912 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001913 * <p>Overall mode of 3A (auto-exposure, auto-white-balance, auto-focus) control
Zhijun Hecc28a412014-02-24 15:11:23 -08001914 * routines.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001915 * <p>This is a top-level 3A control switch. When set to OFF, all 3A control
Zhijun He5f2a47f2014-01-16 15:44:41 -08001916 * by the camera device is disabled. The application must set the fields for
Zhijun Hef3537422013-12-16 16:56:35 -08001917 * capture parameters itself.</p>
1918 * <p>When set to AUTO, the individual algorithm controls in
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001919 * android.control.* are in effect, such as {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode}.</p>
Zhijun Hef3537422013-12-16 16:56:35 -08001920 * <p>When set to USE_SCENE_MODE, the individual controls in
Zhijun He5f2a47f2014-01-16 15:44:41 -08001921 * android.control.* are mostly disabled, and the camera device implements
Zhijun Hef3537422013-12-16 16:56:35 -08001922 * one of the scene mode settings (such as ACTION, SUNSET, or PARTY)
Zhijun He5f2a47f2014-01-16 15:44:41 -08001923 * as it wishes. The camera device scene mode 3A settings are provided by
Zhijun Hef3537422013-12-16 16:56:35 -08001924 * android.control.sceneModeOverrides.</p>
Zhijun He2d5e8972014-02-07 16:13:46 -08001925 * <p>When set to OFF_KEEP_STATE, it is similar to OFF mode, the only difference
1926 * is that this frame will not be used by camera device background 3A statistics
1927 * update, as if this frame is never captured. This mode can be used in the scenario
1928 * where the application doesn't want a 3A manual control capture to affect
1929 * the subsequent auto 3A capture results.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001930 * <p><b>Possible values:</b>
1931 * <ul>
1932 * <li>{@link #CONTROL_MODE_OFF OFF}</li>
1933 * <li>{@link #CONTROL_MODE_AUTO AUTO}</li>
1934 * <li>{@link #CONTROL_MODE_USE_SCENE_MODE USE_SCENE_MODE}</li>
1935 * <li>{@link #CONTROL_MODE_OFF_KEEP_STATE OFF_KEEP_STATE}</li>
1936 * </ul></p>
Yin-Chia Yehd9fc67c2015-01-30 10:47:22 -08001937 * <p><b>Available values for this device:</b><br>
1938 * {@link CameraCharacteristics#CONTROL_AVAILABLE_MODES android.control.availableModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001939 * <p>This key is available on all devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08001940 *
1941 * @see CaptureRequest#CONTROL_AF_MODE
Yin-Chia Yehd9fc67c2015-01-30 10:47:22 -08001942 * @see CameraCharacteristics#CONTROL_AVAILABLE_MODES
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001943 * @see #CONTROL_MODE_OFF
1944 * @see #CONTROL_MODE_AUTO
1945 * @see #CONTROL_MODE_USE_SCENE_MODE
Zhijun He2d5e8972014-02-07 16:13:46 -08001946 * @see #CONTROL_MODE_OFF_KEEP_STATE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001947 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07001948 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07001949 public static final Key<Integer> CONTROL_MODE =
1950 new Key<Integer>("android.control.mode", int.class);
1951
1952 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001953 * <p>Control for which scene mode is currently active.</p>
1954 * <p>Scene modes are custom camera modes optimized for a certain set of conditions and
1955 * capture settings.</p>
Zhijun He379af012014-05-06 11:54:54 -07001956 * <p>This is the mode that that is active when
1957 * <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} == USE_SCENE_MODE</code>. Aside from FACE_PRIORITY,
1958 * these modes will disable {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode},
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001959 * {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode}, and {@link CaptureRequest#CONTROL_AF_MODE android.control.afMode} while in use.</p>
Zhijun He379af012014-05-06 11:54:54 -07001960 * <p>The interpretation and implementation of these scene modes is left
1961 * to the implementor of the camera device. Their behavior will not be
1962 * consistent across all devices, and any given device may only implement
1963 * a subset of these modes.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001964 * <p><b>Possible values:</b>
1965 * <ul>
1966 * <li>{@link #CONTROL_SCENE_MODE_DISABLED DISABLED}</li>
1967 * <li>{@link #CONTROL_SCENE_MODE_FACE_PRIORITY FACE_PRIORITY}</li>
1968 * <li>{@link #CONTROL_SCENE_MODE_ACTION ACTION}</li>
1969 * <li>{@link #CONTROL_SCENE_MODE_PORTRAIT PORTRAIT}</li>
1970 * <li>{@link #CONTROL_SCENE_MODE_LANDSCAPE LANDSCAPE}</li>
1971 * <li>{@link #CONTROL_SCENE_MODE_NIGHT NIGHT}</li>
1972 * <li>{@link #CONTROL_SCENE_MODE_NIGHT_PORTRAIT NIGHT_PORTRAIT}</li>
1973 * <li>{@link #CONTROL_SCENE_MODE_THEATRE THEATRE}</li>
1974 * <li>{@link #CONTROL_SCENE_MODE_BEACH BEACH}</li>
1975 * <li>{@link #CONTROL_SCENE_MODE_SNOW SNOW}</li>
1976 * <li>{@link #CONTROL_SCENE_MODE_SUNSET SUNSET}</li>
1977 * <li>{@link #CONTROL_SCENE_MODE_STEADYPHOTO STEADYPHOTO}</li>
1978 * <li>{@link #CONTROL_SCENE_MODE_FIREWORKS FIREWORKS}</li>
1979 * <li>{@link #CONTROL_SCENE_MODE_SPORTS SPORTS}</li>
1980 * <li>{@link #CONTROL_SCENE_MODE_PARTY PARTY}</li>
1981 * <li>{@link #CONTROL_SCENE_MODE_CANDLELIGHT CANDLELIGHT}</li>
1982 * <li>{@link #CONTROL_SCENE_MODE_BARCODE BARCODE}</li>
1983 * <li>{@link #CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO HIGH_SPEED_VIDEO}</li>
Eino-Ville Talvalaf4eac122014-12-05 11:10:15 -08001984 * <li>{@link #CONTROL_SCENE_MODE_HDR HDR}</li>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07001985 * </ul></p>
1986 * <p><b>Available values for this device:</b><br>
1987 * {@link CameraCharacteristics#CONTROL_AVAILABLE_SCENE_MODES android.control.availableSceneModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07001988 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -07001989 *
1990 * @see CaptureRequest#CONTROL_AE_MODE
1991 * @see CaptureRequest#CONTROL_AF_MODE
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07001992 * @see CameraCharacteristics#CONTROL_AVAILABLE_SCENE_MODES
Zhijun He379af012014-05-06 11:54:54 -07001993 * @see CaptureRequest#CONTROL_AWB_MODE
1994 * @see CaptureRequest#CONTROL_MODE
1995 * @see #CONTROL_SCENE_MODE_DISABLED
1996 * @see #CONTROL_SCENE_MODE_FACE_PRIORITY
1997 * @see #CONTROL_SCENE_MODE_ACTION
1998 * @see #CONTROL_SCENE_MODE_PORTRAIT
1999 * @see #CONTROL_SCENE_MODE_LANDSCAPE
2000 * @see #CONTROL_SCENE_MODE_NIGHT
2001 * @see #CONTROL_SCENE_MODE_NIGHT_PORTRAIT
2002 * @see #CONTROL_SCENE_MODE_THEATRE
2003 * @see #CONTROL_SCENE_MODE_BEACH
2004 * @see #CONTROL_SCENE_MODE_SNOW
2005 * @see #CONTROL_SCENE_MODE_SUNSET
2006 * @see #CONTROL_SCENE_MODE_STEADYPHOTO
2007 * @see #CONTROL_SCENE_MODE_FIREWORKS
2008 * @see #CONTROL_SCENE_MODE_SPORTS
2009 * @see #CONTROL_SCENE_MODE_PARTY
2010 * @see #CONTROL_SCENE_MODE_CANDLELIGHT
2011 * @see #CONTROL_SCENE_MODE_BARCODE
Zhijun Hee0404182014-06-26 13:17:09 -07002012 * @see #CONTROL_SCENE_MODE_HIGH_SPEED_VIDEO
Eino-Ville Talvalaf4eac122014-12-05 11:10:15 -08002013 * @see #CONTROL_SCENE_MODE_HDR
Zhijun He379af012014-05-06 11:54:54 -07002014 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002015 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07002016 public static final Key<Integer> CONTROL_SCENE_MODE =
2017 new Key<Integer>("android.control.sceneMode", int.class);
2018
2019 /**
2020 * <p>Whether video stabilization is
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002021 * active.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002022 * <p>Video stabilization automatically translates and scales images from
2023 * the camera in order to stabilize motion between consecutive frames.</p>
Zhijun He379af012014-05-06 11:54:54 -07002024 * <p>If enabled, video stabilization can modify the
Zhijun He45fa43a12014-06-13 18:29:37 -07002025 * {@link CaptureRequest#SCALER_CROP_REGION android.scaler.cropRegion} to keep the video stream stabilized.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002026 * <p>Switching between different video stabilization modes may take several
2027 * frames to initialize, the camera device will report the current mode
2028 * in capture result metadata. For example, When "ON" mode is requested,
2029 * the video stabilization modes in the first several capture results may
2030 * still be "OFF", and it will become "ON" when the initialization is
2031 * done.</p>
2032 * <p>If a camera device supports both this mode and OIS
2033 * ({@link CaptureRequest#LENS_OPTICAL_STABILIZATION_MODE android.lens.opticalStabilizationMode}), turning both modes on may
2034 * produce undesirable interaction, so it is recommended not to enable
2035 * both at the same time.</p>
2036 * <p><b>Possible values:</b>
2037 * <ul>
2038 * <li>{@link #CONTROL_VIDEO_STABILIZATION_MODE_OFF OFF}</li>
2039 * <li>{@link #CONTROL_VIDEO_STABILIZATION_MODE_ON ON}</li>
2040 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002041 * <p>This key is available on all devices.</p>
Zhijun He379af012014-05-06 11:54:54 -07002042 *
Zhijun He45fa43a12014-06-13 18:29:37 -07002043 * @see CaptureRequest#LENS_OPTICAL_STABILIZATION_MODE
Zhijun He379af012014-05-06 11:54:54 -07002044 * @see CaptureRequest#SCALER_CROP_REGION
2045 * @see #CONTROL_VIDEO_STABILIZATION_MODE_OFF
2046 * @see #CONTROL_VIDEO_STABILIZATION_MODE_ON
2047 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002048 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07002049 public static final Key<Integer> CONTROL_VIDEO_STABILIZATION_MODE =
2050 new Key<Integer>("android.control.videoStabilizationMode", int.class);
2051
2052 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002053 * <p>Operation mode for edge
Zhijun Hecc28a412014-02-24 15:11:23 -08002054 * enhancement.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002055 * <p>Edge enhancement improves sharpness and details in the captured image. OFF means
2056 * no enhancement will be applied by the camera device.</p>
Zhijun He5f2a47f2014-01-16 15:44:41 -08002057 * <p>FAST/HIGH_QUALITY both mean camera device determined enhancement
Zhijun He28079362013-12-17 10:35:40 -08002058 * will be applied. HIGH_QUALITY mode indicates that the
Zhijun He5f2a47f2014-01-16 15:44:41 -08002059 * camera device will use the highest-quality enhancement algorithms,
2060 * even if it slows down capture rate. FAST means the camera device will
Zhijun He28079362013-12-17 10:35:40 -08002061 * not slow down capture rate when applying edge enhancement.</p>
Zhijun He0e99c222015-01-29 15:26:05 -08002062 * <p>For YUV_REPROCESSING, these FAST/HIGH_QUALITY modes both mean that the camera
2063 * device will apply FAST/HIGH_QUALITY YUV-domain edge enhancement, respectively.
2064 * The camera device may adjust its internal noise reduction parameters for best
2065 * image quality based on the {@link CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR android.reprocess.effectiveExposureFactor}, if it is set.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002066 * <p><b>Possible values:</b>
2067 * <ul>
2068 * <li>{@link #EDGE_MODE_OFF OFF}</li>
2069 * <li>{@link #EDGE_MODE_FAST FAST}</li>
2070 * <li>{@link #EDGE_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
2071 * </ul></p>
2072 * <p><b>Available values for this device:</b><br>
2073 * {@link CameraCharacteristics#EDGE_AVAILABLE_EDGE_MODES android.edge.availableEdgeModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002074 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2075 * <p><b>Full capability</b> -
2076 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2077 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Ruben Brunk6dc379c2014-03-04 15:04:00 -08002078 *
2079 * @see CameraCharacteristics#EDGE_AVAILABLE_EDGE_MODES
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002080 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun He0e99c222015-01-29 15:26:05 -08002081 * @see CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002082 * @see #EDGE_MODE_OFF
2083 * @see #EDGE_MODE_FAST
2084 * @see #EDGE_MODE_HIGH_QUALITY
2085 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002086 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002087 public static final Key<Integer> EDGE_MODE =
2088 new Key<Integer>("android.edge.mode", int.class);
2089
2090 /**
Zhijun He66d065a2014-01-16 18:18:50 -08002091 * <p>The desired mode for for the camera device's flash control.</p>
2092 * <p>This control is only effective when flash unit is available
Zhijun He153ac102014-02-03 12:25:12 -08002093 * (<code>{@link CameraCharacteristics#FLASH_INFO_AVAILABLE android.flash.info.available} == true</code>).</p>
Zhijun He66d065a2014-01-16 18:18:50 -08002094 * <p>When this control is used, the {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} must be set to ON or OFF.
2095 * Otherwise, the camera device auto-exposure related flash control (ON_AUTO_FLASH,
2096 * ON_ALWAYS_FLASH, or ON_AUTO_FLASH_REDEYE) will override this control.</p>
2097 * <p>When set to OFF, the camera device will not fire flash for this capture.</p>
2098 * <p>When set to SINGLE, the camera device will fire flash regardless of the camera
2099 * device's auto-exposure routine's result. When used in still capture case, this
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002100 * control should be used along with auto-exposure (AE) precapture metering sequence
Zhijun He66d065a2014-01-16 18:18:50 -08002101 * ({@link CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER android.control.aePrecaptureTrigger}), otherwise, the image may be incorrectly exposed.</p>
2102 * <p>When set to TORCH, the flash will be on continuously. This mode can be used
2103 * for use cases such as preview, auto-focus assist, still capture, or video recording.</p>
Zhijun Heca1b73a2014-02-03 12:39:53 -08002104 * <p>The flash status will be reported by {@link CaptureResult#FLASH_STATE android.flash.state} in the capture result metadata.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002105 * <p><b>Possible values:</b>
2106 * <ul>
2107 * <li>{@link #FLASH_MODE_OFF OFF}</li>
2108 * <li>{@link #FLASH_MODE_SINGLE SINGLE}</li>
2109 * <li>{@link #FLASH_MODE_TORCH TORCH}</li>
2110 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002111 * <p>This key is available on all devices.</p>
Zhijun He66d065a2014-01-16 18:18:50 -08002112 *
2113 * @see CaptureRequest#CONTROL_AE_MODE
2114 * @see CaptureRequest#CONTROL_AE_PRECAPTURE_TRIGGER
2115 * @see CameraCharacteristics#FLASH_INFO_AVAILABLE
Zhijun Heca1b73a2014-02-03 12:39:53 -08002116 * @see CaptureResult#FLASH_STATE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002117 * @see #FLASH_MODE_OFF
2118 * @see #FLASH_MODE_SINGLE
2119 * @see #FLASH_MODE_TORCH
2120 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002121 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002122 public static final Key<Integer> FLASH_MODE =
2123 new Key<Integer>("android.flash.mode", int.class);
2124
2125 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002126 * <p>Current state of the flash
Zhijun Heca1b73a2014-02-03 12:39:53 -08002127 * unit.</p>
2128 * <p>When the camera device doesn't have flash unit
2129 * (i.e. <code>{@link CameraCharacteristics#FLASH_INFO_AVAILABLE android.flash.info.available} == false</code>), this state will always be UNAVAILABLE.
2130 * Other states indicate the current flash status.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002131 * <p>In certain conditions, this will be available on LEGACY devices:</p>
2132 * <ul>
2133 * <li>Flash-less cameras always return UNAVAILABLE.</li>
2134 * <li>Using {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} <code>==</code> ON_ALWAYS_FLASH
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002135 * will always return FIRED.</li>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002136 * <li>Using {@link CaptureRequest#FLASH_MODE android.flash.mode} <code>==</code> TORCH
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002137 * will always return FIRED.</li>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002138 * </ul>
2139 * <p>In all other conditions the state will not be available on
2140 * LEGACY devices (i.e. it will be <code>null</code>).</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002141 * <p><b>Possible values:</b>
2142 * <ul>
2143 * <li>{@link #FLASH_STATE_UNAVAILABLE UNAVAILABLE}</li>
2144 * <li>{@link #FLASH_STATE_CHARGING CHARGING}</li>
2145 * <li>{@link #FLASH_STATE_READY READY}</li>
2146 * <li>{@link #FLASH_STATE_FIRED FIRED}</li>
2147 * <li>{@link #FLASH_STATE_PARTIAL PARTIAL}</li>
2148 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002149 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2150 * <p><b>Limited capability</b> -
2151 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2152 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun Heca1b73a2014-02-03 12:39:53 -08002153 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002154 * @see CaptureRequest#CONTROL_AE_MODE
Zhijun Heca1b73a2014-02-03 12:39:53 -08002155 * @see CameraCharacteristics#FLASH_INFO_AVAILABLE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002156 * @see CaptureRequest#FLASH_MODE
2157 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002158 * @see #FLASH_STATE_UNAVAILABLE
2159 * @see #FLASH_STATE_CHARGING
2160 * @see #FLASH_STATE_READY
2161 * @see #FLASH_STATE_FIRED
Zhijun He8dda7272014-03-25 13:49:30 -07002162 * @see #FLASH_STATE_PARTIAL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002163 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002164 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002165 public static final Key<Integer> FLASH_STATE =
2166 new Key<Integer>("android.flash.state", int.class);
2167
2168 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002169 * <p>Operational mode for hot pixel correction.</p>
Ruben Brunkeba1b3a2014-02-07 18:23:50 -08002170 * <p>Hotpixel correction interpolates out, or otherwise removes, pixels
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002171 * that do not accurately measure the incoming light (i.e. pixels that
2172 * are stuck at an arbitrary value or are oversensitive).</p>
2173 * <p><b>Possible values:</b>
2174 * <ul>
2175 * <li>{@link #HOT_PIXEL_MODE_OFF OFF}</li>
2176 * <li>{@link #HOT_PIXEL_MODE_FAST FAST}</li>
2177 * <li>{@link #HOT_PIXEL_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
2178 * </ul></p>
2179 * <p><b>Available values for this device:</b><br>
2180 * {@link CameraCharacteristics#HOT_PIXEL_AVAILABLE_HOT_PIXEL_MODES android.hotPixel.availableHotPixelModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002181 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Ruben Brunk9d454fd2014-03-04 14:11:52 -08002182 *
2183 * @see CameraCharacteristics#HOT_PIXEL_AVAILABLE_HOT_PIXEL_MODES
Ruben Brunkeba1b3a2014-02-07 18:23:50 -08002184 * @see #HOT_PIXEL_MODE_OFF
2185 * @see #HOT_PIXEL_MODE_FAST
2186 * @see #HOT_PIXEL_MODE_HIGH_QUALITY
2187 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002188 @PublicKey
Ruben Brunkeba1b3a2014-02-07 18:23:50 -08002189 public static final Key<Integer> HOT_PIXEL_MODE =
2190 new Key<Integer>("android.hotPixel.mode", int.class);
2191
2192 /**
Ruben Brunk57493682014-05-27 18:58:08 -07002193 * <p>A location object to use when generating image GPS metadata.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002194 * <p>Setting a location object in a request will include the GPS coordinates of the location
2195 * into any JPEG images captured based on the request. These coordinates can then be
2196 * viewed by anyone who receives the JPEG image.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002197 * <p>This key is available on all devices.</p>
Ruben Brunk57493682014-05-27 18:58:08 -07002198 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002199 @PublicKey
2200 @SyntheticKey
Ruben Brunk57493682014-05-27 18:58:08 -07002201 public static final Key<android.location.Location> JPEG_GPS_LOCATION =
2202 new Key<android.location.Location>("android.jpeg.gpsLocation", android.location.Location.class);
2203
2204 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002205 * <p>GPS coordinates to include in output JPEG
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002206 * EXIF.</p>
2207 * <p><b>Range of valid values:</b><br>
2208 * (-180 - 180], [-90,90], [-inf, inf]</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002209 * <p>This key is available on all devices.</p>
Ruben Brunk57493682014-05-27 18:58:08 -07002210 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002211 */
2212 public static final Key<double[]> JPEG_GPS_COORDINATES =
2213 new Key<double[]>("android.jpeg.gpsCoordinates", double[].class);
2214
2215 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002216 * <p>32 characters describing GPS algorithm to
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002217 * include in EXIF.</p>
2218 * <p><b>Units</b>: UTF-8 null-terminated string</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002219 * <p>This key is available on all devices.</p>
Ruben Brunk57493682014-05-27 18:58:08 -07002220 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002221 */
2222 public static final Key<String> JPEG_GPS_PROCESSING_METHOD =
2223 new Key<String>("android.jpeg.gpsProcessingMethod", String.class);
2224
2225 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002226 * <p>Time GPS fix was made to include in
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002227 * EXIF.</p>
2228 * <p><b>Units</b>: UTC in seconds since January 1, 1970</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002229 * <p>This key is available on all devices.</p>
Ruben Brunk57493682014-05-27 18:58:08 -07002230 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002231 */
2232 public static final Key<Long> JPEG_GPS_TIMESTAMP =
2233 new Key<Long>("android.jpeg.gpsTimestamp", long.class);
2234
2235 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002236 * <p>The orientation for a JPEG image.</p>
2237 * <p>The clockwise rotation angle in degrees, relative to the orientation
2238 * to the camera, that the JPEG picture needs to be rotated by, to be viewed
2239 * upright.</p>
2240 * <p>Camera devices may either encode this value into the JPEG EXIF header, or
Yin-Chia Yehd49ebcc2015-03-27 13:54:04 -07002241 * rotate the image data to match this orientation. When the image data is rotated,
2242 * the thumbnail data will also be rotated.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002243 * <p>Note that this orientation is relative to the orientation of the camera sensor, given
2244 * by {@link CameraCharacteristics#SENSOR_ORIENTATION android.sensor.orientation}.</p>
2245 * <p>To translate from the device orientation given by the Android sensor APIs, the following
2246 * sample code may be used:</p>
2247 * <pre><code>private int getJpegOrientation(CameraCharacteristics c, int deviceOrientation) {
2248 * if (deviceOrientation == android.view.OrientationEventListener.ORIENTATION_UNKNOWN) return 0;
2249 * int sensorOrientation = c.get(CameraCharacteristics.SENSOR_ORIENTATION);
2250 *
2251 * // Round device orientation to a multiple of 90
2252 * deviceOrientation = (deviceOrientation + 45) / 90 * 90;
2253 *
2254 * // Reverse device orientation for front-facing cameras
2255 * boolean facingFront = c.get(CameraCharacteristics.LENS_FACING) == CameraCharacteristics.LENS_FACING_FRONT;
2256 * if (facingFront) deviceOrientation = -deviceOrientation;
2257 *
2258 * // Calculate desired JPEG orientation relative to camera orientation to make
2259 * // the image upright relative to the device orientation
2260 * int jpegOrientation = (sensorOrientation + deviceOrientation + 360) % 360;
2261 *
2262 * return jpegOrientation;
2263 * }
2264 * </code></pre>
2265 * <p><b>Units</b>: Degrees in multiples of 90</p>
2266 * <p><b>Range of valid values:</b><br>
2267 * 0, 90, 180, 270</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002268 * <p>This key is available on all devices.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002269 *
2270 * @see CameraCharacteristics#SENSOR_ORIENTATION
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002271 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002272 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002273 public static final Key<Integer> JPEG_ORIENTATION =
2274 new Key<Integer>("android.jpeg.orientation", int.class);
2275
2276 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002277 * <p>Compression quality of the final JPEG
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002278 * image.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002279 * <p>85-95 is typical usage range.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002280 * <p><b>Range of valid values:</b><br>
2281 * 1-100; larger is higher quality</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002282 * <p>This key is available on all devices.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002283 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002284 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002285 public static final Key<Byte> JPEG_QUALITY =
2286 new Key<Byte>("android.jpeg.quality", byte.class);
2287
2288 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002289 * <p>Compression quality of JPEG
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002290 * thumbnail.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002291 * <p><b>Range of valid values:</b><br>
2292 * 1-100; larger is higher quality</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002293 * <p>This key is available on all devices.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002294 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002295 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002296 public static final Key<Byte> JPEG_THUMBNAIL_QUALITY =
2297 new Key<Byte>("android.jpeg.thumbnailQuality", byte.class);
2298
2299 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002300 * <p>Resolution of embedded JPEG thumbnail.</p>
Zhijun He5f2a47f2014-01-16 15:44:41 -08002301 * <p>When set to (0, 0) value, the JPEG EXIF will not contain thumbnail,
2302 * but the captured JPEG will still be a valid image.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002303 * <p>For best results, when issuing a request for a JPEG image, the thumbnail size selected
2304 * should have the same aspect ratio as the main JPEG output.</p>
Zhijun He50f72432014-05-28 13:52:04 -07002305 * <p>If the thumbnail image aspect ratio differs from the JPEG primary image aspect
2306 * ratio, the camera device creates the thumbnail by cropping it from the primary image.
2307 * For example, if the primary image has 4:3 aspect ratio, the thumbnail image has
2308 * 16:9 aspect ratio, the primary image will be cropped vertically (letterbox) to
2309 * generate the thumbnail image. The thumbnail image will always have a smaller Field
2310 * Of View (FOV) than the primary image when aspect ratios differ.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002311 * <p><b>Range of valid values:</b><br>
2312 * {@link CameraCharacteristics#JPEG_AVAILABLE_THUMBNAIL_SIZES android.jpeg.availableThumbnailSizes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002313 * <p>This key is available on all devices.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002314 *
2315 * @see CameraCharacteristics#JPEG_AVAILABLE_THUMBNAIL_SIZES
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002316 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002317 @PublicKey
Igor Murashkin72f9f0a2014-05-14 15:46:10 -07002318 public static final Key<android.util.Size> JPEG_THUMBNAIL_SIZE =
2319 new Key<android.util.Size>("android.jpeg.thumbnailSize", android.util.Size.class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002320
2321 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002322 * <p>The desired lens aperture size, as a ratio of lens focal length to the
2323 * effective aperture diameter.</p>
2324 * <p>Setting this value is only supported on the camera devices that have a variable
2325 * aperture lens.</p>
Zhijun Hefb46c642014-01-14 17:57:23 -08002326 * <p>When this is supported and {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is OFF,
2327 * this can be set along with {@link CaptureRequest#SENSOR_EXPOSURE_TIME android.sensor.exposureTime},
Eino-Ville Talvalad8fd6792014-02-10 12:41:04 -08002328 * {@link CaptureRequest#SENSOR_SENSITIVITY android.sensor.sensitivity}, and {@link CaptureRequest#SENSOR_FRAME_DURATION android.sensor.frameDuration}
Zhijun Hefb46c642014-01-14 17:57:23 -08002329 * to achieve manual exposure control.</p>
2330 * <p>The requested aperture value may take several frames to reach the
2331 * requested value; the camera device will report the current (intermediate)
Zhijun Heca1b73a2014-02-03 12:39:53 -08002332 * aperture size in capture result metadata while the aperture is changing.
2333 * While the aperture is still changing, {@link CaptureResult#LENS_STATE android.lens.state} will be set to MOVING.</p>
Zhijun Hefb46c642014-01-14 17:57:23 -08002334 * <p>When this is supported and {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} is one of
2335 * the ON modes, this will be overridden by the camera device
2336 * auto-exposure algorithm, the overridden values are then provided
2337 * back to the user in the corresponding result.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002338 * <p><b>Units</b>: The f-number (f/N)</p>
2339 * <p><b>Range of valid values:</b><br>
2340 * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES android.lens.info.availableApertures}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002341 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2342 * <p><b>Full capability</b> -
2343 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2344 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun Hefb46c642014-01-14 17:57:23 -08002345 *
Zhijun He399f05d2014-01-15 11:31:30 -08002346 * @see CaptureRequest#CONTROL_AE_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002347 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -08002348 * @see CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES
Zhijun Heca1b73a2014-02-03 12:39:53 -08002349 * @see CaptureResult#LENS_STATE
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -08002350 * @see CaptureRequest#SENSOR_EXPOSURE_TIME
Eino-Ville Talvalad8fd6792014-02-10 12:41:04 -08002351 * @see CaptureRequest#SENSOR_FRAME_DURATION
Eino-Ville Talvala265b34c2014-01-16 16:18:52 -08002352 * @see CaptureRequest#SENSOR_SENSITIVITY
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002353 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002354 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002355 public static final Key<Float> LENS_APERTURE =
2356 new Key<Float>("android.lens.aperture", float.class);
2357
2358 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002359 * <p>The desired setting for the lens neutral density filter(s).</p>
2360 * <p>This control will not be supported on most camera devices.</p>
Ruben Brunk855bae42014-01-17 10:30:32 -08002361 * <p>Lens filters are typically used to lower the amount of light the
2362 * sensor is exposed to (measured in steps of EV). As used here, an EV
2363 * step is the standard logarithmic representation, which are
2364 * non-negative, and inversely proportional to the amount of light
2365 * hitting the sensor. For example, setting this to 0 would result
2366 * in no reduction of the incoming light, and setting this to 2 would
2367 * mean that the filter is set to reduce incoming light by two stops
2368 * (allowing 1/4 of the prior amount of light to the sensor).</p>
Zhijun Heca1b73a2014-02-03 12:39:53 -08002369 * <p>It may take several frames before the lens filter density changes
2370 * to the requested value. While the filter density is still changing,
2371 * {@link CaptureResult#LENS_STATE android.lens.state} will be set to MOVING.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002372 * <p><b>Units</b>: Exposure Value (EV)</p>
2373 * <p><b>Range of valid values:</b><br>
2374 * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES android.lens.info.availableFilterDensities}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002375 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2376 * <p><b>Full capability</b> -
2377 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2378 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Ruben Brunk855bae42014-01-17 10:30:32 -08002379 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002380 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Ruben Brunk855bae42014-01-17 10:30:32 -08002381 * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES
Zhijun Heca1b73a2014-02-03 12:39:53 -08002382 * @see CaptureResult#LENS_STATE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002383 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002384 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002385 public static final Key<Float> LENS_FILTER_DENSITY =
2386 new Key<Float>("android.lens.filterDensity", float.class);
2387
2388 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002389 * <p>The desired lens focal length; used for optical zoom.</p>
Ruben Brunka20f4c22014-01-17 15:21:13 -08002390 * <p>This setting controls the physical focal length of the camera
2391 * device's lens. Changing the focal length changes the field of
2392 * view of the camera device, and is usually used for optical zoom.</p>
2393 * <p>Like {@link CaptureRequest#LENS_FOCUS_DISTANCE android.lens.focusDistance} and {@link CaptureRequest#LENS_APERTURE android.lens.aperture}, this
2394 * setting won't be applied instantaneously, and it may take several
Zhijun Heca1b73a2014-02-03 12:39:53 -08002395 * frames before the lens can change to the requested focal length.
Ruben Brunka20f4c22014-01-17 15:21:13 -08002396 * While the focal length is still changing, {@link CaptureResult#LENS_STATE android.lens.state} will
2397 * be set to MOVING.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002398 * <p>Optical zoom will not be supported on most devices.</p>
2399 * <p><b>Units</b>: Millimeters</p>
2400 * <p><b>Range of valid values:</b><br>
2401 * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS android.lens.info.availableFocalLengths}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002402 * <p>This key is available on all devices.</p>
Ruben Brunka20f4c22014-01-17 15:21:13 -08002403 *
2404 * @see CaptureRequest#LENS_APERTURE
2405 * @see CaptureRequest#LENS_FOCUS_DISTANCE
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002406 * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS
Ruben Brunka20f4c22014-01-17 15:21:13 -08002407 * @see CaptureResult#LENS_STATE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002408 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002409 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002410 public static final Key<Float> LENS_FOCAL_LENGTH =
2411 new Key<Float>("android.lens.focalLength", float.class);
2412
2413 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002414 * <p>Desired distance to plane of sharpest focus,
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002415 * measured from frontmost surface of the lens.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -08002416 * <p>Should be zero for fixed-focus cameras</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002417 * <p><b>Units</b>: See {@link CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION android.lens.info.focusDistanceCalibration} for details</p>
2418 * <p><b>Range of valid values:</b><br>
2419 * &gt;= 0</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002420 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2421 * <p><b>Full capability</b> -
2422 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2423 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2424 *
2425 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002426 * @see CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002427 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002428 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002429 public static final Key<Float> LENS_FOCUS_DISTANCE =
2430 new Key<Float>("android.lens.focusDistance", float.class);
2431
2432 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002433 * <p>The range of scene distances that are in
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002434 * sharp focus (depth of field).</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -08002435 * <p>If variable focus not supported, can still report
2436 * fixed depth of field range</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002437 * <p><b>Units</b>: A pair of focus distances in diopters: (near,
2438 * far); see {@link CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION android.lens.info.focusDistanceCalibration} for details.</p>
2439 * <p><b>Range of valid values:</b><br>
2440 * &gt;=0</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002441 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2442 * <p><b>Limited capability</b> -
2443 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2444 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2445 *
2446 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002447 * @see CameraCharacteristics#LENS_INFO_FOCUS_DISTANCE_CALIBRATION
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002448 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002449 @PublicKey
Igor Murashkin57438682014-05-30 10:49:00 -07002450 public static final Key<android.util.Pair<Float,Float>> LENS_FOCUS_RANGE =
2451 new Key<android.util.Pair<Float,Float>>("android.lens.focusRange", new TypeReference<android.util.Pair<Float,Float>>() {{ }});
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002452
2453 /**
Ruben Brunk00849b32014-01-17 18:30:23 -08002454 * <p>Sets whether the camera device uses optical image stabilization (OIS)
2455 * when capturing images.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002456 * <p>OIS is used to compensate for motion blur due to small
2457 * movements of the camera during capture. Unlike digital image
2458 * stabilization ({@link CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE android.control.videoStabilizationMode}), OIS
2459 * makes use of mechanical elements to stabilize the camera
2460 * sensor, and thus allows for longer exposure times before
2461 * camera shake becomes apparent.</p>
Zhijun He45fa43a12014-06-13 18:29:37 -07002462 * <p>Switching between different optical stabilization modes may take several
2463 * frames to initialize, the camera device will report the current mode in
2464 * capture result metadata. For example, When "ON" mode is requested, the
2465 * optical stabilization modes in the first several capture results may still
2466 * be "OFF", and it will become "ON" when the initialization is done.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002467 * <p>If a camera device supports both OIS and digital image stabilization
2468 * ({@link CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE android.control.videoStabilizationMode}), turning both modes on may produce undesirable
2469 * interaction, so it is recommended not to enable both at the same time.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002470 * <p>Not all devices will support OIS; see
2471 * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_OPTICAL_STABILIZATION android.lens.info.availableOpticalStabilization} for
2472 * available controls.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002473 * <p><b>Possible values:</b>
2474 * <ul>
2475 * <li>{@link #LENS_OPTICAL_STABILIZATION_MODE_OFF OFF}</li>
2476 * <li>{@link #LENS_OPTICAL_STABILIZATION_MODE_ON ON}</li>
2477 * </ul></p>
2478 * <p><b>Available values for this device:</b><br>
2479 * {@link CameraCharacteristics#LENS_INFO_AVAILABLE_OPTICAL_STABILIZATION android.lens.info.availableOpticalStabilization}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002480 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2481 * <p><b>Limited capability</b> -
2482 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2483 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002484 *
2485 * @see CaptureRequest#CONTROL_VIDEO_STABILIZATION_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002486 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002487 * @see CameraCharacteristics#LENS_INFO_AVAILABLE_OPTICAL_STABILIZATION
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002488 * @see #LENS_OPTICAL_STABILIZATION_MODE_OFF
2489 * @see #LENS_OPTICAL_STABILIZATION_MODE_ON
2490 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002491 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002492 public static final Key<Integer> LENS_OPTICAL_STABILIZATION_MODE =
2493 new Key<Integer>("android.lens.opticalStabilizationMode", int.class);
2494
2495 /**
Zhijun Heca1b73a2014-02-03 12:39:53 -08002496 * <p>Current lens status.</p>
2497 * <p>For lens parameters {@link CaptureRequest#LENS_FOCAL_LENGTH android.lens.focalLength}, {@link CaptureRequest#LENS_FOCUS_DISTANCE android.lens.focusDistance},
2498 * {@link CaptureRequest#LENS_FILTER_DENSITY android.lens.filterDensity} and {@link CaptureRequest#LENS_APERTURE android.lens.aperture}, when changes are requested,
2499 * they may take several frames to reach the requested values. This state indicates
2500 * the current status of the lens parameters.</p>
2501 * <p>When the state is STATIONARY, the lens parameters are not changing. This could be
2502 * either because the parameters are all fixed, or because the lens has had enough
2503 * time to reach the most recently-requested values.
2504 * If all these lens parameters are not changable for a camera device, as listed below:</p>
2505 * <ul>
2506 * <li>Fixed focus (<code>{@link CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE android.lens.info.minimumFocusDistance} == 0</code>), which means
2507 * {@link CaptureRequest#LENS_FOCUS_DISTANCE android.lens.focusDistance} parameter will always be 0.</li>
2508 * <li>Fixed focal length ({@link CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS android.lens.info.availableFocalLengths} contains single value),
2509 * which means the optical zoom is not supported.</li>
2510 * <li>No ND filter ({@link CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES android.lens.info.availableFilterDensities} contains only 0).</li>
2511 * <li>Fixed aperture ({@link CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES android.lens.info.availableApertures} contains single value).</li>
2512 * </ul>
2513 * <p>Then this state will always be STATIONARY.</p>
2514 * <p>When the state is MOVING, it indicates that at least one of the lens parameters
2515 * is changing.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002516 * <p><b>Possible values:</b>
2517 * <ul>
2518 * <li>{@link #LENS_STATE_STATIONARY STATIONARY}</li>
2519 * <li>{@link #LENS_STATE_MOVING MOVING}</li>
2520 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002521 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2522 * <p><b>Limited capability</b> -
2523 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
2524 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun Heca1b73a2014-02-03 12:39:53 -08002525 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002526 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun Heca1b73a2014-02-03 12:39:53 -08002527 * @see CaptureRequest#LENS_APERTURE
2528 * @see CaptureRequest#LENS_FILTER_DENSITY
2529 * @see CaptureRequest#LENS_FOCAL_LENGTH
2530 * @see CaptureRequest#LENS_FOCUS_DISTANCE
2531 * @see CameraCharacteristics#LENS_INFO_AVAILABLE_APERTURES
2532 * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FILTER_DENSITIES
2533 * @see CameraCharacteristics#LENS_INFO_AVAILABLE_FOCAL_LENGTHS
2534 * @see CameraCharacteristics#LENS_INFO_MINIMUM_FOCUS_DISTANCE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002535 * @see #LENS_STATE_STATIONARY
Igor Murashkin9ea4ae62013-09-11 21:40:11 -07002536 * @see #LENS_STATE_MOVING
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002537 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002538 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002539 public static final Key<Integer> LENS_STATE =
2540 new Key<Integer>("android.lens.state", int.class);
2541
2542 /**
Eino-Ville Talvala046a9782015-04-08 20:05:56 +00002543 * <p>The orientation of the camera relative to the sensor
2544 * coordinate system.</p>
2545 * <p>The four coefficients that describe the quarternion
2546 * rotation from the Android sensor coordinate system to a
2547 * camera-aligned coordinate system where the X-axis is
2548 * aligned with the long side of the image sensor, the Y-axis
2549 * is aligned with the short side of the image sensor, and
2550 * the Z-axis is aligned with the optical axis of the sensor.</p>
2551 * <p>To convert from the quarternion coefficients <code>(x,y,z,w)</code>
2552 * to the axis of rotation <code>(a_x, a_y, a_z)</code> and rotation
2553 * amount <code>theta</code>, the following formulas can be used:</p>
2554 * <pre><code> theta = 2 * acos(w)
2555 * a_x = x / sin(theta/2)
2556 * a_y = y / sin(theta/2)
2557 * a_z = z / sin(theta/2)
2558 * </code></pre>
2559 * <p>To create a 3x3 rotation matrix that applies the rotation
2560 * defined by this quarternion, the following matrix can be
2561 * used:</p>
2562 * <pre><code>R = [ 1 - 2y^2 - 2z^2, 2xy - 2zw, 2xz + 2yw,
2563 * 2xy + 2zw, 1 - 2x^2 - 2z^2, 2yz - 2xw,
2564 * 2xz - 2yw, 2yz + 2xw, 1 - 2x^2 - 2y^2 ]
2565 * </code></pre>
2566 * <p>This matrix can then be used to apply the rotation to a
2567 * column vector point with</p>
2568 * <p><code>p' = Rp</code></p>
2569 * <p>where <code>p</code> is in the device sensor coordinate system, and
2570 * <code>p'</code> is in the camera-oriented coordinate system.</p>
2571 * <p><b>Units</b>:
2572 * Quarternion coefficients</p>
2573 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2574 */
2575 @PublicKey
2576 public static final Key<float[]> LENS_POSE_ROTATION =
2577 new Key<float[]>("android.lens.poseRotation", float[].class);
2578
2579 /**
2580 * <p>Position of the camera optical center.</p>
2581 * <p>As measured in the device sensor coordinate system, the
2582 * position of the camera device's optical center, as a
2583 * three-dimensional vector <code>(x,y,z)</code>.</p>
2584 * <p>To transform a world position to a camera-device centered
2585 * coordinate system, the position must be translated by this
2586 * vector and then rotated by {@link CameraCharacteristics#LENS_POSE_ROTATION android.lens.poseRotation}.</p>
2587 * <p><b>Units</b>: Meters</p>
2588 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2589 *
2590 * @see CameraCharacteristics#LENS_POSE_ROTATION
2591 */
2592 @PublicKey
2593 public static final Key<float[]> LENS_POSE_TRANSLATION =
2594 new Key<float[]>("android.lens.poseTranslation", float[].class);
2595
2596 /**
2597 * <p>The parameters for this camera device's intrinsic
2598 * calibration.</p>
2599 * <p>The five calibration parameters that describe the
2600 * transform from camera-centric 3D coordinates to sensor
2601 * pixel coordinates:</p>
2602 * <pre><code>[f_x, f_y, c_x, c_y, s]
2603 * </code></pre>
2604 * <p>Where <code>f_x</code> and <code>f_y</code> are the horizontal and vertical
2605 * focal lengths, <code>[c_x, c_y]</code> is the position of the optical
2606 * axis, and <code>s</code> is a skew parameter for the sensor plane not
2607 * being aligned with the lens plane.</p>
2608 * <p>These are typically used within a transformation matrix K:</p>
2609 * <pre><code>K = [ f_x, s, c_x,
2610 * 0, f_y, c_y,
2611 * 0 0, 1 ]
2612 * </code></pre>
2613 * <p>which can then be combined with the camera pose rotation
2614 * <code>R</code> and translation <code>t</code> ({@link CameraCharacteristics#LENS_POSE_ROTATION android.lens.poseRotation} and
2615 * {@link CameraCharacteristics#LENS_POSE_TRANSLATION android.lens.poseTranslation}, respective) to calculate the
2616 * complete transform from world coordinates to pixel
2617 * coordinates:</p>
2618 * <pre><code>P = [ K 0 * [ R t
2619 * 0 1 ] 0 1 ]
2620 * </code></pre>
2621 * <p>and with <code>p_w</code> being a point in the world coordinate system
2622 * and <code>p_s</code> being a point in the camera active pixel array
2623 * coordinate system, and with the mapping including the
2624 * homogeneous division by z:</p>
2625 * <pre><code> p_h = (x_h, y_h, z_h) = P p_w
2626 * p_s = p_h / z_h
2627 * </code></pre>
2628 * <p>so <code>[x_s, y_s]</code> is the pixel coordinates of the world
2629 * point, <code>z_s = 1</code>, and <code>w_s</code> is a measurement of disparity
2630 * (depth) in pixel coordinates.</p>
2631 * <p><b>Units</b>:
Eino-Ville Talvala0b7b03b2015-04-13 17:29:52 -07002632 * Pixels in the {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize} coordinate
Eino-Ville Talvala046a9782015-04-08 20:05:56 +00002633 * system.</p>
2634 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2635 *
2636 * @see CameraCharacteristics#LENS_POSE_ROTATION
2637 * @see CameraCharacteristics#LENS_POSE_TRANSLATION
Eino-Ville Talvala0b7b03b2015-04-13 17:29:52 -07002638 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
Eino-Ville Talvala046a9782015-04-08 20:05:56 +00002639 */
2640 @PublicKey
2641 public static final Key<float[]> LENS_INTRINSIC_CALIBRATION =
2642 new Key<float[]>("android.lens.intrinsicCalibration", float[].class);
2643
2644 /**
2645 * <p>The correction coefficients to correct for this camera device's
2646 * radial lens distortion.</p>
2647 * <p>Three cofficients <code>[kappa_1, kappa_2, kappa_3]</code> that
2648 * can be used to correct the lens's radial geometric
2649 * distortion with the mapping equations:</p>
2650 * <pre><code> x_c = x_i * ( 1 + kappa_1 * r^2 + kappa_2 * r^4 + kappa_3 * r^6 )
2651 * y_c = y_i * ( 1 + kappa_1 * r^2 + kappa_2 * r^4 + kappa_3 * r^6 )
2652 * </code></pre>
2653 * <p>where <code>[x_i, y_i]</code> are normalized coordinates with <code>(0,0)</code>
2654 * at the lens optical center, and <code>[-1, 1]</code> are the edges of
2655 * the active pixel array; and where <code>[x_c, y_c]</code> are the
2656 * corrected normalized coordinates with radial distortion
2657 * removed; and <code>r^2 = x_i^2 + y_i^2</code>.</p>
2658 * <p><b>Units</b>:
2659 * Coefficients for a 6th-degree even radial polynomial.</p>
2660 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2661 */
2662 @PublicKey
2663 public static final Key<float[]> LENS_RADIAL_DISTORTION =
2664 new Key<float[]>("android.lens.radialDistortion", float[].class);
2665
2666 /**
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002667 * <p>Mode of operation for the noise reduction algorithm.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002668 * <p>The noise reduction algorithm attempts to improve image quality by removing
Zhijun He0e99c222015-01-29 15:26:05 -08002669 * excessive noise added by the capture process, especially in dark conditions.</p>
2670 * <p>OFF means no noise reduction will be applied by the camera device, for both raw and
2671 * YUV domain.</p>
2672 * <p>MINIMAL means that only sensor raw domain basic noise reduction is enabled ,to remove
2673 * demosaicing or other processing artifacts. For YUV_REPROCESSING, MINIMAL is same as OFF.
2674 * This mode is optional, may not be support by all devices. The application should check
2675 * {@link CameraCharacteristics#NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES android.noiseReduction.availableNoiseReductionModes} before using it.</p>
Zhijun He5f2a47f2014-01-16 15:44:41 -08002676 * <p>FAST/HIGH_QUALITY both mean camera device determined noise filtering
2677 * will be applied. HIGH_QUALITY mode indicates that the camera device
2678 * will use the highest-quality noise filtering algorithms,
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07002679 * even if it slows down capture rate. FAST means the camera device will not
Zhijun He28079362013-12-17 10:35:40 -08002680 * slow down capture rate when applying noise filtering.</p>
Zhijun He0e99c222015-01-29 15:26:05 -08002681 * <p>For YUV_REPROCESSING, these FAST/HIGH_QUALITY modes both mean that the camera device
2682 * will apply FAST/HIGH_QUALITY YUV domain noise reduction, respectively. The camera device
2683 * may adjust the noise reduction parameters for best image quality based on the
2684 * {@link CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR android.reprocess.effectiveExposureFactor} if it is set.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002685 * <p><b>Possible values:</b>
2686 * <ul>
2687 * <li>{@link #NOISE_REDUCTION_MODE_OFF OFF}</li>
2688 * <li>{@link #NOISE_REDUCTION_MODE_FAST FAST}</li>
2689 * <li>{@link #NOISE_REDUCTION_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
Zhijun He0e99c222015-01-29 15:26:05 -08002690 * <li>{@link #NOISE_REDUCTION_MODE_MINIMAL MINIMAL}</li>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002691 * </ul></p>
2692 * <p><b>Available values for this device:</b><br>
2693 * {@link CameraCharacteristics#NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES android.noiseReduction.availableNoiseReductionModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002694 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2695 * <p><b>Full capability</b> -
2696 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2697 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Ruben Brunk6dc379c2014-03-04 15:04:00 -08002698 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002699 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Ruben Brunk6dc379c2014-03-04 15:04:00 -08002700 * @see CameraCharacteristics#NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES
Zhijun He0e99c222015-01-29 15:26:05 -08002701 * @see CaptureRequest#REPROCESS_EFFECTIVE_EXPOSURE_FACTOR
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002702 * @see #NOISE_REDUCTION_MODE_OFF
2703 * @see #NOISE_REDUCTION_MODE_FAST
2704 * @see #NOISE_REDUCTION_MODE_HIGH_QUALITY
Zhijun He0e99c222015-01-29 15:26:05 -08002705 * @see #NOISE_REDUCTION_MODE_MINIMAL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002706 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002707 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002708 public static final Key<Integer> NOISE_REDUCTION_MODE =
2709 new Key<Integer>("android.noiseReduction.mode", int.class);
2710
2711 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002712 * <p>Whether a result given to the framework is the
Eino-Ville Talvala7a313102013-11-07 14:45:06 -08002713 * final one for the capture, or only a partial that contains a
2714 * subset of the full set of dynamic metadata
Igor Murashkinace5bf02013-12-10 17:36:40 -08002715 * values.</p>
2716 * <p>The entries in the result metadata buffers for a
Eino-Ville Talvala7a313102013-11-07 14:45:06 -08002717 * single capture may not overlap, except for this entry. The
2718 * FINAL buffers must retain FIFO ordering relative to the
2719 * requests that generate them, so the FINAL buffer for frame 3 must
2720 * always be sent to the framework after the FINAL buffer for frame 2, and
2721 * before the FINAL buffer for frame 4. PARTIAL buffers may be returned
2722 * in any order relative to other frames, but all PARTIAL buffers for a given
2723 * capture must arrive before the FINAL buffer for that capture. This entry may
Zhijun Hecc28a412014-02-24 15:11:23 -08002724 * only be used by the camera device if quirks.usePartialResult is set to 1.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002725 * <p><b>Range of valid values:</b><br>
2726 * Optional. Default value is FINAL.</p>
Igor Murashkin3242f4f2014-01-15 12:27:41 -08002727 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Igor Murashkin9c595172014-05-12 13:56:20 -07002728 * @deprecated
Eino-Ville Talvala7a313102013-11-07 14:45:06 -08002729 * @hide
2730 */
Igor Murashkin9c595172014-05-12 13:56:20 -07002731 @Deprecated
Eino-Ville Talvala7a313102013-11-07 14:45:06 -08002732 public static final Key<Boolean> QUIRKS_PARTIAL_RESULT =
2733 new Key<Boolean>("android.quirks.partialResult", boolean.class);
2734
2735 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002736 * <p>A frame counter set by the framework. This value monotonically
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -07002737 * increases with every new result (that is, each new result has a unique
Igor Murashkinace5bf02013-12-10 17:36:40 -08002738 * frameCount value).</p>
2739 * <p>Reset on release()</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002740 * <p><b>Units</b>: count of frames</p>
2741 * <p><b>Range of valid values:</b><br>
2742 * &gt; 0</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002743 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Igor Murashkinbdf366c2014-07-25 16:54:20 -07002744 * @deprecated
2745 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002746 */
Igor Murashkinbdf366c2014-07-25 16:54:20 -07002747 @Deprecated
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002748 public static final Key<Integer> REQUEST_FRAME_COUNT =
2749 new Key<Integer>("android.request.frameCount", int.class);
2750
2751 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002752 * <p>An application-specified ID for the current
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002753 * request. Must be maintained unchanged in output
Igor Murashkinace5bf02013-12-10 17:36:40 -08002754 * frame</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002755 * <p><b>Units</b>: arbitrary integer assigned by application</p>
2756 * <p><b>Range of valid values:</b><br>
2757 * Any int</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002758 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002759 * @hide
2760 */
2761 public static final Key<Integer> REQUEST_ID =
2762 new Key<Integer>("android.request.id", int.class);
2763
2764 /**
Igor Murashkinc127f052014-01-17 18:06:02 -08002765 * <p>Specifies the number of pipeline stages the frame went
2766 * through from when it was exposed to when the final completed result
2767 * was available to the framework.</p>
2768 * <p>Depending on what settings are used in the request, and
2769 * what streams are configured, the data may undergo less processing,
2770 * and some pipeline stages skipped.</p>
2771 * <p>See {@link CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH android.request.pipelineMaxDepth} for more details.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002772 * <p><b>Range of valid values:</b><br>
2773 * &lt;= {@link CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH android.request.pipelineMaxDepth}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002774 * <p>This key is available on all devices.</p>
Igor Murashkinc127f052014-01-17 18:06:02 -08002775 *
2776 * @see CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH
2777 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002778 @PublicKey
Igor Murashkinc127f052014-01-17 18:06:02 -08002779 public static final Key<Byte> REQUEST_PIPELINE_DEPTH =
2780 new Key<Byte>("android.request.pipelineDepth", byte.class);
2781
2782 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002783 * <p>The desired region of the sensor to read out for this capture.</p>
2784 * <p>This control can be used to implement digital zoom.</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002785 * <p>The crop region coordinate system is based off
2786 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}, with <code>(0, 0)</code> being the
2787 * top-left corner of the sensor active array.</p>
2788 * <p>Output streams use this rectangle to produce their output,
2789 * cropping to a smaller region if necessary to maintain the
2790 * stream's aspect ratio, then scaling the sensor input to
2791 * match the output's configured resolution.</p>
2792 * <p>The crop region is applied after the RAW to other color
2793 * space (e.g. YUV) conversion. Since raw streams
2794 * (e.g. RAW16) don't have the conversion stage, they are not
2795 * croppable. The crop region will be ignored by raw streams.</p>
Zhijun He9e6d1882014-05-22 16:47:35 -07002796 * <p>For non-raw streams, any additional per-stream cropping will
2797 * be done to maximize the final pixel area of the stream.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -08002798 * <p>For example, if the crop region is set to a 4:3 aspect
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002799 * ratio, then 4:3 streams will use the exact crop
2800 * region. 16:9 streams will further crop vertically
Igor Murashkinace5bf02013-12-10 17:36:40 -08002801 * (letterbox).</p>
2802 * <p>Conversely, if the crop region is set to a 16:9, then 4:3
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002803 * outputs will crop horizontally (pillarbox), and 16:9
2804 * streams will match exactly. These additional crops will
Igor Murashkinace5bf02013-12-10 17:36:40 -08002805 * be centered within the crop region.</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002806 * <p>The width and height of the crop region cannot
2807 * be set to be smaller than
2808 * <code>floor( activeArraySize.width / {@link CameraCharacteristics#SCALER_AVAILABLE_MAX_DIGITAL_ZOOM android.scaler.availableMaxDigitalZoom} )</code> and
2809 * <code>floor( activeArraySize.height / {@link CameraCharacteristics#SCALER_AVAILABLE_MAX_DIGITAL_ZOOM android.scaler.availableMaxDigitalZoom} )</code>, respectively.</p>
2810 * <p>The camera device may adjust the crop region to account
2811 * for rounding and other hardware requirements; the final
2812 * crop region used will be included in the output capture
2813 * result.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002814 * <p><b>Units</b>: Pixel coordinates relative to
2815 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002816 * <p>This key is available on all devices.</p>
Eino-Ville Talvalad8fd6792014-02-10 12:41:04 -08002817 *
2818 * @see CameraCharacteristics#SCALER_AVAILABLE_MAX_DIGITAL_ZOOM
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002819 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002820 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002821 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002822 public static final Key<android.graphics.Rect> SCALER_CROP_REGION =
2823 new Key<android.graphics.Rect>("android.scaler.cropRegion", android.graphics.Rect.class);
2824
2825 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002826 * <p>Duration each pixel is exposed to
2827 * light.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002828 * <p>If the sensor can't expose this exact duration, it will shorten the
2829 * duration exposed to the nearest possible value (rather than expose longer).
2830 * The final exposure time used will be available in the output capture result.</p>
2831 * <p>This control is only effective if {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} or {@link CaptureRequest#CONTROL_MODE android.control.mode} is set to
2832 * OFF; otherwise the auto-exposure algorithm will override this value.</p>
2833 * <p><b>Units</b>: Nanoseconds</p>
2834 * <p><b>Range of valid values:</b><br>
2835 * {@link CameraCharacteristics#SENSOR_INFO_EXPOSURE_TIME_RANGE android.sensor.info.exposureTimeRange}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002836 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2837 * <p><b>Full capability</b> -
2838 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2839 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
2840 *
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002841 * @see CaptureRequest#CONTROL_AE_MODE
2842 * @see CaptureRequest#CONTROL_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002843 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002844 * @see CameraCharacteristics#SENSOR_INFO_EXPOSURE_TIME_RANGE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002845 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002846 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002847 public static final Key<Long> SENSOR_EXPOSURE_TIME =
2848 new Key<Long>("android.sensor.exposureTime", long.class);
2849
2850 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002851 * <p>Duration from start of frame exposure to
Igor Murashkin143aa0b2014-01-17 15:02:34 -08002852 * start of next frame exposure.</p>
2853 * <p>The maximum frame rate that can be supported by a camera subsystem is
2854 * a function of many factors:</p>
2855 * <ul>
2856 * <li>Requested resolutions of output image streams</li>
2857 * <li>Availability of binning / skipping modes on the imager</li>
2858 * <li>The bandwidth of the imager interface</li>
2859 * <li>The bandwidth of the various ISP processing blocks</li>
2860 * </ul>
2861 * <p>Since these factors can vary greatly between different ISPs and
2862 * sensors, the camera abstraction tries to represent the bandwidth
2863 * restrictions with as simple a model as possible.</p>
2864 * <p>The model presented has the following characteristics:</p>
2865 * <ul>
2866 * <li>The image sensor is always configured to output the smallest
2867 * resolution possible given the application's requested output stream
2868 * sizes. The smallest resolution is defined as being at least as large
2869 * as the largest requested output stream size; the camera pipeline must
2870 * never digitally upsample sensor data when the crop region covers the
2871 * whole sensor. In general, this means that if only small output stream
2872 * resolutions are configured, the sensor can provide a higher frame
2873 * rate.</li>
2874 * <li>Since any request may use any or all the currently configured
2875 * output streams, the sensor and ISP must be configured to support
2876 * scaling a single capture to all the streams at the same time. This
2877 * means the camera pipeline must be ready to produce the largest
2878 * requested output size without any delay. Therefore, the overall
2879 * frame rate of a given configured stream set is governed only by the
2880 * largest requested stream resolution.</li>
2881 * <li>Using more than one output stream in a request does not affect the
2882 * frame duration.</li>
Igor Murashkina23ffb52014-02-07 18:52:34 -08002883 * <li>Certain format-streams may need to do additional background processing
2884 * before data is consumed/produced by that stream. These processors
2885 * can run concurrently to the rest of the camera pipeline, but
2886 * cannot process more than 1 capture at a time.</li>
Igor Murashkin143aa0b2014-01-17 15:02:34 -08002887 * </ul>
2888 * <p>The necessary information for the application, given the model above,
Eino-Ville Talvalab6eb52f2015-04-16 16:39:45 -07002889 * is provided via the {@link CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP android.scaler.streamConfigurationMap} field using
2890 * {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputMinFrameDuration }.
Igor Murashkin143aa0b2014-01-17 15:02:34 -08002891 * These are used to determine the maximum frame rate / minimum frame
2892 * duration that is possible for a given stream configuration.</p>
2893 * <p>Specifically, the application can use the following rules to
Igor Murashkina23ffb52014-02-07 18:52:34 -08002894 * determine the minimum frame duration it can request from the camera
Igor Murashkin143aa0b2014-01-17 15:02:34 -08002895 * device:</p>
2896 * <ol>
Igor Murashkina23ffb52014-02-07 18:52:34 -08002897 * <li>Let the set of currently configured input/output streams
2898 * be called <code>S</code>.</li>
Eino-Ville Talvalab6eb52f2015-04-16 16:39:45 -07002899 * <li>Find the minimum frame durations for each stream in <code>S</code>, by looking
2900 * it up in {@link CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP android.scaler.streamConfigurationMap} using {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputMinFrameDuration }
2901 * (with its respective size/format). Let this set of frame durations be
2902 * called <code>F</code>.</li>
Igor Murashkina23ffb52014-02-07 18:52:34 -08002903 * <li>For any given request <code>R</code>, the minimum frame duration allowed
2904 * for <code>R</code> is the maximum out of all values in <code>F</code>. Let the streams
2905 * used in <code>R</code> be called <code>S_r</code>.</li>
Igor Murashkin143aa0b2014-01-17 15:02:34 -08002906 * </ol>
Eino-Ville Talvalab6eb52f2015-04-16 16:39:45 -07002907 * <p>If none of the streams in <code>S_r</code> have a stall time (listed in {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputStallDuration }
2908 * using its respective size/format), then the frame duration in <code>F</code>
2909 * determines the steady state frame rate that the application will get
2910 * if it uses <code>R</code> as a repeating request. Let this special kind of
2911 * request be called <code>Rsimple</code>.</p>
Igor Murashkina23ffb52014-02-07 18:52:34 -08002912 * <p>A repeating request <code>Rsimple</code> can be <em>occasionally</em> interleaved
2913 * by a single capture of a new request <code>Rstall</code> (which has at least
2914 * one in-use stream with a non-0 stall time) and if <code>Rstall</code> has the
2915 * same minimum frame duration this will not cause a frame rate loss
2916 * if all buffers from the previous <code>Rstall</code> have already been
2917 * delivered.</p>
2918 * <p>For more details about stalling, see
Eino-Ville Talvalab6eb52f2015-04-16 16:39:45 -07002919 * {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputStallDuration }.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002920 * <p>This control is only effective if {@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} or {@link CaptureRequest#CONTROL_MODE android.control.mode} is set to
2921 * OFF; otherwise the auto-exposure algorithm will override this value.</p>
2922 * <p><b>Units</b>: Nanoseconds</p>
2923 * <p><b>Range of valid values:</b><br>
2924 * See {@link CameraCharacteristics#SENSOR_INFO_MAX_FRAME_DURATION android.sensor.info.maxFrameDuration},
2925 * {@link CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP android.scaler.streamConfigurationMap}. The duration
2926 * is capped to <code>max(duration, exposureTime + overhead)</code>.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002927 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2928 * <p><b>Full capability</b> -
2929 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2930 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Igor Murashkin143aa0b2014-01-17 15:02:34 -08002931 *
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002932 * @see CaptureRequest#CONTROL_AE_MODE
2933 * @see CaptureRequest#CONTROL_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002934 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Igor Murashkin9c595172014-05-12 13:56:20 -07002935 * @see CameraCharacteristics#SCALER_STREAM_CONFIGURATION_MAP
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002936 * @see CameraCharacteristics#SENSOR_INFO_MAX_FRAME_DURATION
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002937 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002938 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002939 public static final Key<Long> SENSOR_FRAME_DURATION =
2940 new Key<Long>("android.sensor.frameDuration", long.class);
2941
2942 /**
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002943 * <p>The amount of gain applied to sensor data
2944 * before processing.</p>
2945 * <p>The sensitivity is the standard ISO sensitivity value,
2946 * as defined in ISO 12232:2006.</p>
2947 * <p>The sensitivity must be within {@link CameraCharacteristics#SENSOR_INFO_SENSITIVITY_RANGE android.sensor.info.sensitivityRange}, and
2948 * if if it less than {@link CameraCharacteristics#SENSOR_MAX_ANALOG_SENSITIVITY android.sensor.maxAnalogSensitivity}, the camera device
2949 * is guaranteed to use only analog amplification for applying the gain.</p>
2950 * <p>If the camera device cannot apply the exact sensitivity
2951 * requested, it will reduce the gain to the nearest supported
2952 * value. The final sensitivity used will be available in the
2953 * output capture result.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002954 * <p><b>Units</b>: ISO arithmetic units</p>
2955 * <p><b>Range of valid values:</b><br>
2956 * {@link CameraCharacteristics#SENSOR_INFO_SENSITIVITY_RANGE android.sensor.info.sensitivityRange}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002957 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
2958 * <p><b>Full capability</b> -
2959 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
2960 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002961 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002962 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002963 * @see CameraCharacteristics#SENSOR_INFO_SENSITIVITY_RANGE
2964 * @see CameraCharacteristics#SENSOR_MAX_ANALOG_SENSITIVITY
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002965 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002966 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002967 public static final Key<Integer> SENSOR_SENSITIVITY =
2968 new Key<Integer>("android.sensor.sensitivity", int.class);
2969
2970 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08002971 * <p>Time at start of exposure of first
Zhijun He0bda31a2014-06-13 14:38:39 -07002972 * row of the image sensor active array, in nanoseconds.</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07002973 * <p>The timestamps are also included in all image
2974 * buffers produced for the same capture, and will be identical
Zhijun He45fa43a12014-06-13 18:29:37 -07002975 * on all the outputs.</p>
Eino-Ville Talvalaabd9d3c2014-07-28 13:01:52 -07002976 * <p>When {@link CameraCharacteristics#SENSOR_INFO_TIMESTAMP_SOURCE android.sensor.info.timestampSource} <code>==</code> UNKNOWN,
Zhijun He45fa43a12014-06-13 18:29:37 -07002977 * the timestamps measure time since an unspecified starting point,
2978 * and are monotonically increasing. They can be compared with the
2979 * timestamps for other captures from the same camera device, but are
2980 * not guaranteed to be comparable to any other time source.</p>
Eino-Ville Talvalab6eb52f2015-04-16 16:39:45 -07002981 * <p>When {@link CameraCharacteristics#SENSOR_INFO_TIMESTAMP_SOURCE android.sensor.info.timestampSource} <code>==</code> REALTIME, the
2982 * timestamps measure time in the same timebase as {@link android.os.SystemClock#elapsedRealtimeNanos }, and they can
2983 * be compared to other timestamps from other subsystems that
2984 * are using that base.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07002985 * <p><b>Units</b>: Nanoseconds</p>
2986 * <p><b>Range of valid values:</b><br>
2987 * &gt; 0</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07002988 * <p>This key is available on all devices.</p>
Zhijun He45fa43a12014-06-13 18:29:37 -07002989 *
Eino-Ville Talvalaabd9d3c2014-07-28 13:01:52 -07002990 * @see CameraCharacteristics#SENSOR_INFO_TIMESTAMP_SOURCE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002991 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07002992 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07002993 public static final Key<Long> SENSOR_TIMESTAMP =
2994 new Key<Long>("android.sensor.timestamp", long.class);
2995
2996 /**
Ruben Brunk7c062362014-04-15 23:53:53 -07002997 * <p>The estimated camera neutral color in the native sensor colorspace at
2998 * the time of capture.</p>
2999 * <p>This value gives the neutral color point encoded as an RGB value in the
3000 * native sensor color space. The neutral color point indicates the
3001 * currently estimated white point of the scene illumination. It can be
3002 * used to interpolate between the provided color transforms when
3003 * processing raw sensor data.</p>
3004 * <p>The order of the values is R, G, B; where R is in the lowest index.</p>
Ruben Brunk20c76f62014-02-07 15:47:10 -08003005 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3006 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003007 @PublicKey
Ruben Brunk20c76f62014-02-07 15:47:10 -08003008 public static final Key<Rational[]> SENSOR_NEUTRAL_COLOR_POINT =
3009 new Key<Rational[]>("android.sensor.neutralColorPoint", Rational[].class);
3010
3011 /**
Ruben Brunk1b1f1b62014-07-23 17:49:08 -07003012 * <p>Noise model coefficients for each CFA mosaic channel.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003013 * <p>This key contains two noise model coefficients for each CFA channel
Ruben Brunk1b1f1b62014-07-23 17:49:08 -07003014 * corresponding to the sensor amplification (S) and sensor readout
3015 * noise (O). These are given as pairs of coefficients for each channel
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003016 * in the same order as channels listed for the CFA layout key
Ruben Brunk1b1f1b62014-07-23 17:49:08 -07003017 * (see {@link CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT android.sensor.info.colorFilterArrangement}). This is
3018 * represented as an array of Pair&lt;Double, Double&gt;, where
3019 * the first member of the Pair at index n is the S coefficient and the
3020 * second member is the O coefficient for the nth color channel in the CFA.</p>
3021 * <p>These coefficients are used in a two parameter noise model to describe
3022 * the amount of noise present in the image for each CFA channel. The
3023 * noise model used here is:</p>
3024 * <p>N(x) = sqrt(Sx + O)</p>
3025 * <p>Where x represents the recorded signal of a CFA channel normalized to
3026 * the range [0, 1], and S and O are the noise model coeffiecients for
3027 * that channel.</p>
3028 * <p>A more detailed description of the noise model can be found in the
3029 * Adobe DNG specification for the NoiseProfile tag.</p>
3030 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3031 *
3032 * @see CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT
3033 */
3034 @PublicKey
3035 public static final Key<android.util.Pair<Double,Double>[]> SENSOR_NOISE_PROFILE =
3036 new Key<android.util.Pair<Double,Double>[]>("android.sensor.noiseProfile", new TypeReference<android.util.Pair<Double,Double>[]>() {{ }});
3037
3038 /**
Ruben Brunk987d9f72014-02-11 18:00:24 -08003039 * <p>The worst-case divergence between Bayer green channels.</p>
3040 * <p>This value is an estimate of the worst case split between the
3041 * Bayer green channels in the red and blue rows in the sensor color
3042 * filter array.</p>
3043 * <p>The green split is calculated as follows:</p>
3044 * <ol>
Ruben Brunke89b1202014-03-24 17:10:35 -07003045 * <li>A 5x5 pixel (or larger) window W within the active sensor array is
3046 * chosen. The term 'pixel' here is taken to mean a group of 4 Bayer
3047 * mosaic channels (R, Gr, Gb, B). The location and size of the window
3048 * chosen is implementation defined, and should be chosen to provide a
3049 * green split estimate that is both representative of the entire image
3050 * for this camera sensor, and can be calculated quickly.</li>
Ruben Brunk987d9f72014-02-11 18:00:24 -08003051 * <li>The arithmetic mean of the green channels from the red
3052 * rows (mean_Gr) within W is computed.</li>
3053 * <li>The arithmetic mean of the green channels from the blue
3054 * rows (mean_Gb) within W is computed.</li>
3055 * <li>The maximum ratio R of the two means is computed as follows:
3056 * <code>R = max((mean_Gr + 1)/(mean_Gb + 1), (mean_Gb + 1)/(mean_Gr + 1))</code></li>
3057 * </ol>
3058 * <p>The ratio R is the green split divergence reported for this property,
3059 * which represents how much the green channels differ in the mosaic
3060 * pattern. This value is typically used to determine the treatment of
3061 * the green mosaic channels when demosaicing.</p>
3062 * <p>The green split value can be roughly interpreted as follows:</p>
3063 * <ul>
3064 * <li>R &lt; 1.03 is a negligible split (&lt;3% divergence).</li>
3065 * <li>1.20 &lt;= R &gt;= 1.03 will require some software
3066 * correction to avoid demosaic errors (3-20% divergence).</li>
3067 * <li>R &gt; 1.20 will require strong software correction to produce
3068 * a usuable image (&gt;20% divergence).</li>
3069 * </ul>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003070 * <p><b>Range of valid values:</b><br></p>
3071 * <p>&gt;= 0</p>
Ruben Brunk987d9f72014-02-11 18:00:24 -08003072 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3073 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003074 @PublicKey
Ruben Brunk987d9f72014-02-11 18:00:24 -08003075 public static final Key<Float> SENSOR_GREEN_SPLIT =
3076 new Key<Float>("android.sensor.greenSplit", float.class);
3077
3078 /**
Zhijun He379af012014-05-06 11:54:54 -07003079 * <p>A pixel <code>[R, G_even, G_odd, B]</code> that supplies the test pattern
3080 * when {@link CaptureRequest#SENSOR_TEST_PATTERN_MODE android.sensor.testPatternMode} is SOLID_COLOR.</p>
3081 * <p>Each color channel is treated as an unsigned 32-bit integer.
3082 * The camera device then uses the most significant X bits
3083 * that correspond to how many bits are in its Bayer raw sensor
3084 * output.</p>
3085 * <p>For example, a sensor with RAW10 Bayer output would use the
3086 * 10 most significant bits from each color channel.</p>
3087 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3088 *
3089 * @see CaptureRequest#SENSOR_TEST_PATTERN_MODE
3090 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003091 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07003092 public static final Key<int[]> SENSOR_TEST_PATTERN_DATA =
3093 new Key<int[]>("android.sensor.testPatternData", int[].class);
3094
3095 /**
Igor Murashkinc127f052014-01-17 18:06:02 -08003096 * <p>When enabled, the sensor sends a test pattern instead of
3097 * doing a real exposure from the camera.</p>
3098 * <p>When a test pattern is enabled, all manual sensor controls specified
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003099 * by android.sensor.* will be ignored. All other controls should
Igor Murashkinc127f052014-01-17 18:06:02 -08003100 * work as normal.</p>
3101 * <p>For example, if manual flash is enabled, flash firing should still
3102 * occur (and that the test pattern remain unmodified, since the flash
3103 * would not actually affect it).</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003104 * <p>Defaults to OFF.</p>
3105 * <p><b>Possible values:</b>
3106 * <ul>
3107 * <li>{@link #SENSOR_TEST_PATTERN_MODE_OFF OFF}</li>
3108 * <li>{@link #SENSOR_TEST_PATTERN_MODE_SOLID_COLOR SOLID_COLOR}</li>
3109 * <li>{@link #SENSOR_TEST_PATTERN_MODE_COLOR_BARS COLOR_BARS}</li>
3110 * <li>{@link #SENSOR_TEST_PATTERN_MODE_COLOR_BARS_FADE_TO_GRAY COLOR_BARS_FADE_TO_GRAY}</li>
3111 * <li>{@link #SENSOR_TEST_PATTERN_MODE_PN9 PN9}</li>
3112 * <li>{@link #SENSOR_TEST_PATTERN_MODE_CUSTOM1 CUSTOM1}</li>
3113 * </ul></p>
3114 * <p><b>Available values for this device:</b><br>
3115 * {@link CameraCharacteristics#SENSOR_AVAILABLE_TEST_PATTERN_MODES android.sensor.availableTestPatternModes}</p>
Igor Murashkinc127f052014-01-17 18:06:02 -08003116 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003117 *
3118 * @see CameraCharacteristics#SENSOR_AVAILABLE_TEST_PATTERN_MODES
Igor Murashkinc127f052014-01-17 18:06:02 -08003119 * @see #SENSOR_TEST_PATTERN_MODE_OFF
3120 * @see #SENSOR_TEST_PATTERN_MODE_SOLID_COLOR
3121 * @see #SENSOR_TEST_PATTERN_MODE_COLOR_BARS
3122 * @see #SENSOR_TEST_PATTERN_MODE_COLOR_BARS_FADE_TO_GRAY
3123 * @see #SENSOR_TEST_PATTERN_MODE_PN9
3124 * @see #SENSOR_TEST_PATTERN_MODE_CUSTOM1
3125 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003126 @PublicKey
Igor Murashkinc127f052014-01-17 18:06:02 -08003127 public static final Key<Integer> SENSOR_TEST_PATTERN_MODE =
3128 new Key<Integer>("android.sensor.testPatternMode", int.class);
3129
3130 /**
Zhijun He0bda31a2014-06-13 14:38:39 -07003131 * <p>Duration between the start of first row exposure
3132 * and the start of last row exposure.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003133 * <p>This is the exposure time skew between the first and last
3134 * row exposure start times. The first row and the last row are
3135 * the first and last rows inside of the
3136 * {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.</p>
Zhijun He0bda31a2014-06-13 14:38:39 -07003137 * <p>For typical camera sensors that use rolling shutters, this is also equivalent
3138 * to the frame readout time.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003139 * <p><b>Units</b>: Nanoseconds</p>
3140 * <p><b>Range of valid values:</b><br>
3141 * &gt;= 0 and &lt;
Eino-Ville Talvalab6eb52f2015-04-16 16:39:45 -07003142 * {@link android.hardware.camera2.params.StreamConfigurationMap#getOutputMinFrameDuration }.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003143 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3144 * <p><b>Limited capability</b> -
3145 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
3146 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun He0bda31a2014-06-13 14:38:39 -07003147 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003148 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun He0bda31a2014-06-13 14:38:39 -07003149 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3150 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003151 @PublicKey
Zhijun He0bda31a2014-06-13 14:38:39 -07003152 public static final Key<Long> SENSOR_ROLLING_SHUTTER_SKEW =
3153 new Key<Long>("android.sensor.rollingShutterSkew", long.class);
3154
3155 /**
Zhijun Heba93fe62014-01-17 16:43:05 -08003156 * <p>Quality of lens shading correction applied
3157 * to the image data.</p>
3158 * <p>When set to OFF mode, no lens shading correction will be applied by the
3159 * camera device, and an identity lens shading map data will be provided
3160 * if <code>{@link CaptureRequest#STATISTICS_LENS_SHADING_MAP_MODE android.statistics.lensShadingMapMode} == ON</code>. For example, for lens
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003161 * shading map with size of <code>[ 4, 3 ]</code>,
3162 * the output {@link CaptureResult#STATISTICS_LENS_SHADING_CORRECTION_MAP android.statistics.lensShadingCorrectionMap} for this case will be an identity
3163 * map shown below:</p>
Zhijun Heba93fe62014-01-17 16:43:05 -08003164 * <pre><code>[ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003165 * 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
3166 * 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
3167 * 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
3168 * 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
3169 * 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ]
Zhijun Heba93fe62014-01-17 16:43:05 -08003170 * </code></pre>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003171 * <p>When set to other modes, lens shading correction will be applied by the camera
3172 * device. Applications can request lens shading map data by setting
3173 * {@link CaptureRequest#STATISTICS_LENS_SHADING_MAP_MODE android.statistics.lensShadingMapMode} to ON, and then the camera device will provide lens
3174 * shading map data in {@link CaptureResult#STATISTICS_LENS_SHADING_CORRECTION_MAP android.statistics.lensShadingCorrectionMap}; the returned shading map
3175 * data will be the one applied by the camera device for this capture request.</p>
3176 * <p>The shading map data may depend on the auto-exposure (AE) and AWB statistics, therefore
3177 * the reliability of the map data may be affected by the AE and AWB algorithms. When AE and
3178 * AWB are in AUTO modes({@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} <code>!=</code> OFF and {@link CaptureRequest#CONTROL_AWB_MODE android.control.awbMode} <code>!=</code>
3179 * OFF), to get best results, it is recommended that the applications wait for the AE and AWB
3180 * to be converged before using the returned shading map data.</p>
3181 * <p><b>Possible values:</b>
3182 * <ul>
3183 * <li>{@link #SHADING_MODE_OFF OFF}</li>
3184 * <li>{@link #SHADING_MODE_FAST FAST}</li>
3185 * <li>{@link #SHADING_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
3186 * </ul></p>
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003187 * <p><b>Available values for this device:</b><br>
3188 * {@link CameraCharacteristics#SHADING_AVAILABLE_MODES android.shading.availableModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003189 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3190 * <p><b>Full capability</b> -
3191 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3192 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun Heba93fe62014-01-17 16:43:05 -08003193 *
Zhijun Hefa7c7552014-05-22 16:36:02 -07003194 * @see CaptureRequest#CONTROL_AE_MODE
3195 * @see CaptureRequest#CONTROL_AWB_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003196 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003197 * @see CameraCharacteristics#SHADING_AVAILABLE_MODES
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003198 * @see CaptureResult#STATISTICS_LENS_SHADING_CORRECTION_MAP
Zhijun Heba93fe62014-01-17 16:43:05 -08003199 * @see CaptureRequest#STATISTICS_LENS_SHADING_MAP_MODE
3200 * @see #SHADING_MODE_OFF
3201 * @see #SHADING_MODE_FAST
3202 * @see #SHADING_MODE_HIGH_QUALITY
Zhijun Heba93fe62014-01-17 16:43:05 -08003203 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003204 @PublicKey
Zhijun Heba93fe62014-01-17 16:43:05 -08003205 public static final Key<Integer> SHADING_MODE =
3206 new Key<Integer>("android.shading.mode", int.class);
3207
3208 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003209 * <p>Operating mode for the face detector
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07003210 * unit.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -08003211 * <p>Whether face detection is enabled, and whether it
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003212 * should output just the basic fields or the full set of
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003213 * fields.</p>
3214 * <p><b>Possible values:</b>
3215 * <ul>
3216 * <li>{@link #STATISTICS_FACE_DETECT_MODE_OFF OFF}</li>
3217 * <li>{@link #STATISTICS_FACE_DETECT_MODE_SIMPLE SIMPLE}</li>
3218 * <li>{@link #STATISTICS_FACE_DETECT_MODE_FULL FULL}</li>
3219 * </ul></p>
3220 * <p><b>Available values for this device:</b><br>
3221 * {@link CameraCharacteristics#STATISTICS_INFO_AVAILABLE_FACE_DETECT_MODES android.statistics.info.availableFaceDetectModes}</p>
3222 * <p>This key is available on all devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003223 *
3224 * @see CameraCharacteristics#STATISTICS_INFO_AVAILABLE_FACE_DETECT_MODES
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003225 * @see #STATISTICS_FACE_DETECT_MODE_OFF
3226 * @see #STATISTICS_FACE_DETECT_MODE_SIMPLE
3227 * @see #STATISTICS_FACE_DETECT_MODE_FULL
3228 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003229 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003230 public static final Key<Integer> STATISTICS_FACE_DETECT_MODE =
3231 new Key<Integer>("android.statistics.faceDetectMode", int.class);
3232
3233 /**
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003234 * <p>List of unique IDs for detected faces.</p>
3235 * <p>Each detected face is given a unique ID that is valid for as long as the face is visible
3236 * to the camera device. A face that leaves the field of view and later returns may be
3237 * assigned a new ID.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003238 * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} == FULL
3239 * This key is available on all devices.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003240 *
3241 * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
Zhijun He7f80d6f2013-11-04 10:18:05 -08003242 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003243 */
3244 public static final Key<int[]> STATISTICS_FACE_IDS =
3245 new Key<int[]>("android.statistics.faceIds", int[].class);
3246
3247 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003248 * <p>List of landmarks for detected
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003249 * faces.</p>
3250 * <p>The coordinate system is that of {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}, with
3251 * <code>(0, 0)</code> being the top-left pixel of the active array.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003252 * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} == FULL
3253 * This key is available on all devices.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003254 *
3255 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3256 * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
Zhijun He7f80d6f2013-11-04 10:18:05 -08003257 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003258 */
3259 public static final Key<int[]> STATISTICS_FACE_LANDMARKS =
3260 new Key<int[]>("android.statistics.faceLandmarks", int[].class);
3261
3262 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003263 * <p>List of the bounding rectangles for detected
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003264 * faces.</p>
3265 * <p>The coordinate system is that of {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}, with
3266 * <code>(0, 0)</code> being the top-left pixel of the active array.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003267 * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} != OFF
3268 * This key is available on all devices.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003269 *
3270 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3271 * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
Zhijun He7f80d6f2013-11-04 10:18:05 -08003272 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003273 */
3274 public static final Key<android.graphics.Rect[]> STATISTICS_FACE_RECTANGLES =
3275 new Key<android.graphics.Rect[]>("android.statistics.faceRectangles", android.graphics.Rect[].class);
3276
3277 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003278 * <p>List of the face confidence scores for
3279 * detected faces</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003280 * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} != OFF.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003281 * <p><b>Range of valid values:</b><br>
3282 * 1-100</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003283 * <p>This key is available on all devices.</p>
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003284 *
3285 * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
Zhijun He7f80d6f2013-11-04 10:18:05 -08003286 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003287 */
3288 public static final Key<byte[]> STATISTICS_FACE_SCORES =
3289 new Key<byte[]>("android.statistics.faceScores", byte[].class);
3290
3291 /**
Igor Murashkin72f9f0a2014-05-14 15:46:10 -07003292 * <p>List of the faces detected through camera face detection
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003293 * in this capture.</p>
Igor Murashkin72f9f0a2014-05-14 15:46:10 -07003294 * <p>Only available if {@link CaptureRequest#STATISTICS_FACE_DETECT_MODE android.statistics.faceDetectMode} <code>!=</code> OFF.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003295 * <p>This key is available on all devices.</p>
Igor Murashkin72f9f0a2014-05-14 15:46:10 -07003296 *
3297 * @see CaptureRequest#STATISTICS_FACE_DETECT_MODE
3298 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003299 @PublicKey
3300 @SyntheticKey
Igor Murashkin72f9f0a2014-05-14 15:46:10 -07003301 public static final Key<android.hardware.camera2.params.Face[]> STATISTICS_FACES =
3302 new Key<android.hardware.camera2.params.Face[]>("android.statistics.faces", android.hardware.camera2.params.Face[].class);
3303
3304 /**
Igor Murashkin7a9b30e2013-12-11 13:31:38 -08003305 * <p>The shading map is a low-resolution floating-point map
3306 * that lists the coefficients used to correct for vignetting, for each
3307 * Bayer color channel.</p>
3308 * <p>The least shaded section of the image should have a gain factor
3309 * of 1; all other sections should have gains above 1.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003310 * <p>When {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} = TRANSFORM_MATRIX, the map
Igor Murashkinace5bf02013-12-10 17:36:40 -08003311 * must take into account the colorCorrection settings.</p>
Igor Murashkin7a9b30e2013-12-11 13:31:38 -08003312 * <p>The shading map is for the entire active pixel array, and is not
3313 * affected by the crop region specified in the request. Each shading map
3314 * entry is the value of the shading compensation map over a specific
3315 * pixel on the sensor. Specifically, with a (N x M) resolution shading
3316 * map, and an active pixel array size (W x H), shading map entry
3317 * (x,y) ϵ (0 ... N-1, 0 ... M-1) is the value of the shading map at
3318 * pixel ( ((W-1)/(N-1)) * x, ((H-1)/(M-1)) * y) for the four color channels.
3319 * The map is assumed to be bilinearly interpolated between the sample points.</p>
3320 * <p>The channel order is [R, Geven, Godd, B], where Geven is the green
3321 * channel for the even rows of a Bayer pattern, and Godd is the odd rows.
Ruben Brunk57493682014-05-27 18:58:08 -07003322 * The shading map is stored in a fully interleaved format.</p>
Igor Murashkin7a9b30e2013-12-11 13:31:38 -08003323 * <p>The shading map should have on the order of 30-40 rows and columns,
3324 * and must be smaller than 64x64.</p>
3325 * <p>As an example, given a very small map defined as:</p>
Ruben Brunk57493682014-05-27 18:58:08 -07003326 * <pre><code>width,height = [ 4, 3 ]
3327 * values =
Igor Murashkin7a9b30e2013-12-11 13:31:38 -08003328 * [ 1.3, 1.2, 1.15, 1.2, 1.2, 1.2, 1.15, 1.2,
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003329 * 1.1, 1.2, 1.2, 1.2, 1.3, 1.2, 1.3, 1.3,
3330 * 1.2, 1.2, 1.25, 1.1, 1.1, 1.1, 1.1, 1.0,
3331 * 1.0, 1.0, 1.0, 1.0, 1.2, 1.3, 1.25, 1.2,
3332 * 1.3, 1.2, 1.2, 1.3, 1.2, 1.15, 1.1, 1.2,
3333 * 1.2, 1.1, 1.0, 1.2, 1.3, 1.15, 1.2, 1.3 ]
Igor Murashkin7a9b30e2013-12-11 13:31:38 -08003334 * </code></pre>
3335 * <p>The low-resolution scaling map images for each channel are
3336 * (displayed using nearest-neighbor interpolation):</p>
3337 * <p><img alt="Red lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/red_shading.png" />
3338 * <img alt="Green (even rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_e_shading.png" />
3339 * <img alt="Green (odd rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_o_shading.png" />
3340 * <img alt="Blue lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/blue_shading.png" /></p>
3341 * <p>As a visualization only, inverting the full-color map to recover an
3342 * image of a gray wall (using bicubic interpolation for visual quality) as captured by the sensor gives:</p>
3343 * <p><img alt="Image of a uniform white wall (inverse shading map)" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/inv_shading.png" /></p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003344 * <p><b>Range of valid values:</b><br>
3345 * Each gain factor is &gt;= 1</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003346 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3347 * <p><b>Full capability</b> -
3348 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3349 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003350 *
Zhijun He5f2a47f2014-01-16 15:44:41 -08003351 * @see CaptureRequest#COLOR_CORRECTION_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003352 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Ruben Brunk57493682014-05-27 18:58:08 -07003353 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003354 @PublicKey
Ruben Brunk57493682014-05-27 18:58:08 -07003355 public static final Key<android.hardware.camera2.params.LensShadingMap> STATISTICS_LENS_SHADING_CORRECTION_MAP =
3356 new Key<android.hardware.camera2.params.LensShadingMap>("android.statistics.lensShadingCorrectionMap", android.hardware.camera2.params.LensShadingMap.class);
3357
3358 /**
3359 * <p>The shading map is a low-resolution floating-point map
3360 * that lists the coefficients used to correct for vignetting, for each
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003361 * Bayer color channel of RAW image data.</p>
Ruben Brunk57493682014-05-27 18:58:08 -07003362 * <p>The least shaded section of the image should have a gain factor
3363 * of 1; all other sections should have gains above 1.</p>
3364 * <p>When {@link CaptureRequest#COLOR_CORRECTION_MODE android.colorCorrection.mode} = TRANSFORM_MATRIX, the map
3365 * must take into account the colorCorrection settings.</p>
3366 * <p>The shading map is for the entire active pixel array, and is not
3367 * affected by the crop region specified in the request. Each shading map
3368 * entry is the value of the shading compensation map over a specific
3369 * pixel on the sensor. Specifically, with a (N x M) resolution shading
3370 * map, and an active pixel array size (W x H), shading map entry
3371 * (x,y) ϵ (0 ... N-1, 0 ... M-1) is the value of the shading map at
3372 * pixel ( ((W-1)/(N-1)) * x, ((H-1)/(M-1)) * y) for the four color channels.
3373 * The map is assumed to be bilinearly interpolated between the sample points.</p>
3374 * <p>The channel order is [R, Geven, Godd, B], where Geven is the green
3375 * channel for the even rows of a Bayer pattern, and Godd is the odd rows.
3376 * The shading map is stored in a fully interleaved format, and its size
3377 * is provided in the camera static metadata by android.lens.info.shadingMapSize.</p>
3378 * <p>The shading map should have on the order of 30-40 rows and columns,
3379 * and must be smaller than 64x64.</p>
3380 * <p>As an example, given a very small map defined as:</p>
3381 * <pre><code>android.lens.info.shadingMapSize = [ 4, 3 ]
3382 * android.statistics.lensShadingMap =
3383 * [ 1.3, 1.2, 1.15, 1.2, 1.2, 1.2, 1.15, 1.2,
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003384 * 1.1, 1.2, 1.2, 1.2, 1.3, 1.2, 1.3, 1.3,
3385 * 1.2, 1.2, 1.25, 1.1, 1.1, 1.1, 1.1, 1.0,
3386 * 1.0, 1.0, 1.0, 1.0, 1.2, 1.3, 1.25, 1.2,
3387 * 1.3, 1.2, 1.2, 1.3, 1.2, 1.15, 1.1, 1.2,
3388 * 1.2, 1.1, 1.0, 1.2, 1.3, 1.15, 1.2, 1.3 ]
Ruben Brunk57493682014-05-27 18:58:08 -07003389 * </code></pre>
3390 * <p>The low-resolution scaling map images for each channel are
3391 * (displayed using nearest-neighbor interpolation):</p>
3392 * <p><img alt="Red lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/red_shading.png" />
3393 * <img alt="Green (even rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_e_shading.png" />
3394 * <img alt="Green (odd rows) lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/green_o_shading.png" />
3395 * <img alt="Blue lens shading map" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/blue_shading.png" /></p>
3396 * <p>As a visualization only, inverting the full-color map to recover an
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003397 * image of a gray wall (using bicubic interpolation for visual quality)
3398 * as captured by the sensor gives:</p>
Ruben Brunk57493682014-05-27 18:58:08 -07003399 * <p><img alt="Image of a uniform white wall (inverse shading map)" src="../../../../images/camera2/metadata/android.statistics.lensShadingMap/inv_shading.png" /></p>
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003400 * <p>Note that the RAW image data might be subject to lens shading
3401 * correction not reported on this map. Query
3402 * {@link CameraCharacteristics#SENSOR_INFO_LENS_SHADING_APPLIED android.sensor.info.lensShadingApplied} to see if RAW image data has subject
3403 * to lens shading correction. If {@link CameraCharacteristics#SENSOR_INFO_LENS_SHADING_APPLIED android.sensor.info.lensShadingApplied}
3404 * is TRUE, the RAW image data is subject to partial or full lens shading
3405 * correction. In the case full lens shading correction is applied to RAW
3406 * images, the gain factor map reported in this key will contain all 1.0 gains.
3407 * In other words, the map reported in this key is the remaining lens shading
3408 * that needs to be applied on the RAW image to get images without lens shading
3409 * artifacts. See {@link CameraCharacteristics#REQUEST_MAX_NUM_OUTPUT_RAW android.request.maxNumOutputRaw} for a list of RAW image
3410 * formats.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003411 * <p><b>Range of valid values:</b><br>
3412 * Each gain factor is &gt;= 1</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003413 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3414 * <p><b>Full capability</b> -
3415 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3416 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Ruben Brunk57493682014-05-27 18:58:08 -07003417 *
3418 * @see CaptureRequest#COLOR_CORRECTION_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003419 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003420 * @see CameraCharacteristics#REQUEST_MAX_NUM_OUTPUT_RAW
3421 * @see CameraCharacteristics#SENSOR_INFO_LENS_SHADING_APPLIED
Ruben Brunk57493682014-05-27 18:58:08 -07003422 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003423 */
3424 public static final Key<float[]> STATISTICS_LENS_SHADING_MAP =
3425 new Key<float[]>("android.statistics.lensShadingMap", float[].class);
3426
3427 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003428 * <p>The best-fit color channel gains calculated
Zhijun Hecc28a412014-02-24 15:11:23 -08003429 * by the camera device's statistics units for the current output frame.</p>
Igor Murashkinace5bf02013-12-10 17:36:40 -08003430 * <p>This may be different than the gains used for this frame,
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003431 * since statistics processing on data from a new frame
3432 * typically completes after the transform has already been
Igor Murashkinace5bf02013-12-10 17:36:40 -08003433 * applied to that frame.</p>
3434 * <p>The 4 channel gains are defined in Bayer domain,
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003435 * see {@link CaptureRequest#COLOR_CORRECTION_GAINS android.colorCorrection.gains} for details.</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07003436 * <p>This value should always be calculated by the auto-white balance (AWB) block,
Igor Murashkinace5bf02013-12-10 17:36:40 -08003437 * regardless of the android.control.* current values.</p>
Igor Murashkinaef3b7e2014-01-15 13:20:37 -08003438 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003439 *
3440 * @see CaptureRequest#COLOR_CORRECTION_GAINS
Igor Murashkin9c595172014-05-12 13:56:20 -07003441 * @deprecated
Igor Murashkinaef3b7e2014-01-15 13:20:37 -08003442 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003443 */
Igor Murashkin9c595172014-05-12 13:56:20 -07003444 @Deprecated
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003445 public static final Key<float[]> STATISTICS_PREDICTED_COLOR_GAINS =
3446 new Key<float[]>("android.statistics.predictedColorGains", float[].class);
3447
3448 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003449 * <p>The best-fit color transform matrix estimate
Zhijun Hecc28a412014-02-24 15:11:23 -08003450 * calculated by the camera device's statistics units for the current
3451 * output frame.</p>
3452 * <p>The camera device will provide the estimate from its
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003453 * statistics unit on the white balance transforms to use
Zhijun Hecc28a412014-02-24 15:11:23 -08003454 * for the next frame. These are the values the camera device believes
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003455 * are the best fit for the current output frame. This may
3456 * be different than the transform used for this frame, since
3457 * statistics processing on data from a new frame typically
3458 * completes after the transform has already been applied to
Igor Murashkinace5bf02013-12-10 17:36:40 -08003459 * that frame.</p>
3460 * <p>These estimates must be provided for all frames, even if
3461 * capture settings and color transforms are set by the application.</p>
Eino-Ville Talvalab67a3b32014-06-06 13:07:20 -07003462 * <p>This value should always be calculated by the auto-white balance (AWB) block,
Igor Murashkinace5bf02013-12-10 17:36:40 -08003463 * regardless of the android.control.* current values.</p>
Igor Murashkinaef3b7e2014-01-15 13:20:37 -08003464 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Igor Murashkin9c595172014-05-12 13:56:20 -07003465 * @deprecated
Igor Murashkinaef3b7e2014-01-15 13:20:37 -08003466 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003467 */
Igor Murashkin9c595172014-05-12 13:56:20 -07003468 @Deprecated
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003469 public static final Key<Rational[]> STATISTICS_PREDICTED_COLOR_TRANSFORM =
3470 new Key<Rational[]>("android.statistics.predictedColorTransform", Rational[].class);
3471
3472 /**
Zhijun He208fb6c2014-02-03 13:09:06 -08003473 * <p>The camera device estimated scene illumination lighting
3474 * frequency.</p>
3475 * <p>Many light sources, such as most fluorescent lights, flicker at a rate
3476 * that depends on the local utility power standards. This flicker must be
3477 * accounted for by auto-exposure routines to avoid artifacts in captured images.
3478 * The camera device uses this entry to tell the application what the scene
3479 * illuminant frequency is.</p>
3480 * <p>When manual exposure control is enabled
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003481 * (<code>{@link CaptureRequest#CONTROL_AE_MODE android.control.aeMode} == OFF</code> or <code>{@link CaptureRequest#CONTROL_MODE android.control.mode} ==
3482 * OFF</code>), the {@link CaptureRequest#CONTROL_AE_ANTIBANDING_MODE android.control.aeAntibandingMode} doesn't perform
3483 * antibanding, and the application can ensure it selects
3484 * exposure times that do not cause banding issues by looking
3485 * into this metadata field. See
3486 * {@link CaptureRequest#CONTROL_AE_ANTIBANDING_MODE android.control.aeAntibandingMode} for more details.</p>
3487 * <p>Reports NONE if there doesn't appear to be flickering illumination.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003488 * <p><b>Possible values:</b>
3489 * <ul>
3490 * <li>{@link #STATISTICS_SCENE_FLICKER_NONE NONE}</li>
3491 * <li>{@link #STATISTICS_SCENE_FLICKER_50HZ 50HZ}</li>
3492 * <li>{@link #STATISTICS_SCENE_FLICKER_60HZ 60HZ}</li>
3493 * </ul></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003494 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3495 * <p><b>Full capability</b> -
3496 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3497 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun He208fb6c2014-02-03 13:09:06 -08003498 *
3499 * @see CaptureRequest#CONTROL_AE_ANTIBANDING_MODE
3500 * @see CaptureRequest#CONTROL_AE_MODE
3501 * @see CaptureRequest#CONTROL_MODE
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003502 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003503 * @see #STATISTICS_SCENE_FLICKER_NONE
3504 * @see #STATISTICS_SCENE_FLICKER_50HZ
3505 * @see #STATISTICS_SCENE_FLICKER_60HZ
3506 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003507 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003508 public static final Key<Integer> STATISTICS_SCENE_FLICKER =
3509 new Key<Integer>("android.statistics.sceneFlicker", int.class);
3510
3511 /**
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003512 * <p>Operating mode for hot pixel map generation.</p>
3513 * <p>If set to <code>true</code>, a hot pixel map is returned in {@link CaptureResult#STATISTICS_HOT_PIXEL_MAP android.statistics.hotPixelMap}.
3514 * If set to <code>false</code>, no hot pixel map will be returned.</p>
3515 * <p><b>Range of valid values:</b><br>
3516 * {@link CameraCharacteristics#STATISTICS_INFO_AVAILABLE_HOT_PIXEL_MAP_MODES android.statistics.info.availableHotPixelMapModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003517 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Ruben Brunk9d454fd2014-03-04 14:11:52 -08003518 *
3519 * @see CaptureResult#STATISTICS_HOT_PIXEL_MAP
3520 * @see CameraCharacteristics#STATISTICS_INFO_AVAILABLE_HOT_PIXEL_MAP_MODES
3521 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003522 @PublicKey
Ruben Brunk9d454fd2014-03-04 14:11:52 -08003523 public static final Key<Boolean> STATISTICS_HOT_PIXEL_MAP_MODE =
3524 new Key<Boolean>("android.statistics.hotPixelMapMode", boolean.class);
3525
3526 /**
3527 * <p>List of <code>(x, y)</code> coordinates of hot/defective pixels on the sensor.</p>
3528 * <p>A coordinate <code>(x, y)</code> must lie between <code>(0, 0)</code>, and
3529 * <code>(width - 1, height - 1)</code> (inclusive), which are the top-left and
3530 * bottom-right of the pixel array, respectively. The width and
3531 * height dimensions are given in {@link CameraCharacteristics#SENSOR_INFO_PIXEL_ARRAY_SIZE android.sensor.info.pixelArraySize}.
3532 * This may include hot pixels that lie outside of the active array
3533 * bounds given by {@link CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE android.sensor.info.activeArraySize}.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003534 * <p><b>Range of valid values:</b><br></p>
3535 * <p>n &lt;= number of pixels on the sensor.
3536 * The <code>(x, y)</code> coordinates must be bounded by
3537 * {@link CameraCharacteristics#SENSOR_INFO_PIXEL_ARRAY_SIZE android.sensor.info.pixelArraySize}.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003538 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Ruben Brunk9d454fd2014-03-04 14:11:52 -08003539 *
3540 * @see CameraCharacteristics#SENSOR_INFO_ACTIVE_ARRAY_SIZE
3541 * @see CameraCharacteristics#SENSOR_INFO_PIXEL_ARRAY_SIZE
3542 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003543 @PublicKey
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003544 public static final Key<android.graphics.Point[]> STATISTICS_HOT_PIXEL_MAP =
3545 new Key<android.graphics.Point[]>("android.statistics.hotPixelMap", android.graphics.Point[].class);
Ruben Brunk9d454fd2014-03-04 14:11:52 -08003546
3547 /**
Zhijun He379af012014-05-06 11:54:54 -07003548 * <p>Whether the camera device will output the lens
3549 * shading map in output result metadata.</p>
3550 * <p>When set to ON,
Eino-Ville Talvalae600d6a2014-06-09 14:25:50 -07003551 * android.statistics.lensShadingMap will be provided in
Zhijun He379af012014-05-06 11:54:54 -07003552 * the output result metadata.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003553 * <p>ON is always supported on devices with the RAW capability.</p>
3554 * <p><b>Possible values:</b>
3555 * <ul>
3556 * <li>{@link #STATISTICS_LENS_SHADING_MAP_MODE_OFF OFF}</li>
3557 * <li>{@link #STATISTICS_LENS_SHADING_MAP_MODE_ON ON}</li>
3558 * </ul></p>
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003559 * <p><b>Available values for this device:</b><br>
3560 * {@link CameraCharacteristics#STATISTICS_INFO_AVAILABLE_LENS_SHADING_MAP_MODES android.statistics.info.availableLensShadingMapModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003561 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3562 * <p><b>Full capability</b> -
3563 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3564 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
3565 *
3566 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Yin-Chia Yehe4aa2832015-02-06 15:15:53 -08003567 * @see CameraCharacteristics#STATISTICS_INFO_AVAILABLE_LENS_SHADING_MAP_MODES
Zhijun He379af012014-05-06 11:54:54 -07003568 * @see #STATISTICS_LENS_SHADING_MAP_MODE_OFF
3569 * @see #STATISTICS_LENS_SHADING_MAP_MODE_ON
3570 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003571 @PublicKey
Zhijun He379af012014-05-06 11:54:54 -07003572 public static final Key<Integer> STATISTICS_LENS_SHADING_MAP_MODE =
3573 new Key<Integer>("android.statistics.lensShadingMapMode", int.class);
3574
3575 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003576 * <p>Tonemapping / contrast / gamma curve for the blue
Igor Murashkine0060932014-01-17 17:24:11 -08003577 * channel, to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3578 * CONTRAST_CURVE.</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003579 * <p>See android.tonemap.curveRed for more details.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003580 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3581 * <p><b>Full capability</b> -
3582 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3583 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003584 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003585 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun He5f2a47f2014-01-16 15:44:41 -08003586 * @see CaptureRequest#TONEMAP_MODE
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003587 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003588 */
Zhijun He3ffd7052013-08-19 15:45:08 -07003589 public static final Key<float[]> TONEMAP_CURVE_BLUE =
3590 new Key<float[]>("android.tonemap.curveBlue", float[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003591
3592 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003593 * <p>Tonemapping / contrast / gamma curve for the green
Igor Murashkine0060932014-01-17 17:24:11 -08003594 * channel, to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3595 * CONTRAST_CURVE.</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003596 * <p>See android.tonemap.curveRed for more details.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003597 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3598 * <p><b>Full capability</b> -
3599 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3600 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003601 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003602 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun He5f2a47f2014-01-16 15:44:41 -08003603 * @see CaptureRequest#TONEMAP_MODE
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003604 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003605 */
Zhijun He3ffd7052013-08-19 15:45:08 -07003606 public static final Key<float[]> TONEMAP_CURVE_GREEN =
3607 new Key<float[]>("android.tonemap.curveGreen", float[].class);
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003608
3609 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003610 * <p>Tonemapping / contrast / gamma curve for the red
Igor Murashkine0060932014-01-17 17:24:11 -08003611 * channel, to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3612 * CONTRAST_CURVE.</p>
3613 * <p>Each channel's curve is defined by an array of control points:</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003614 * <pre><code>android.tonemap.curveRed =
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003615 * [ P0in, P0out, P1in, P1out, P2in, P2out, P3in, P3out, ..., PNin, PNout ]
Zhijun He870922b2014-02-15 21:47:51 -08003616 * 2 &lt;= N &lt;= {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}</code></pre>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003617 * <p>These are sorted in order of increasing <code>Pin</code>; it is
3618 * required that input values 0.0 and 1.0 are included in the list to
Igor Murashkine0060932014-01-17 17:24:11 -08003619 * define a complete mapping. For input values between control points,
3620 * the camera device must linearly interpolate between the control
3621 * points.</p>
3622 * <p>Each curve can have an independent number of points, and the number
3623 * of points can be less than max (that is, the request doesn't have to
3624 * always provide a curve with number of points equivalent to
3625 * {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}).</p>
3626 * <p>A few examples, and their corresponding graphical mappings; these
3627 * only specify the red channel and the precision is limited to 4
3628 * digits, for conciseness.</p>
3629 * <p>Linear mapping:</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003630 * <pre><code>android.tonemap.curveRed = [ 0, 0, 1.0, 1.0 ]
Igor Murashkine0060932014-01-17 17:24:11 -08003631 * </code></pre>
3632 * <p><img alt="Linear mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/linear_tonemap.png" /></p>
3633 * <p>Invert mapping:</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003634 * <pre><code>android.tonemap.curveRed = [ 0, 1.0, 1.0, 0 ]
Igor Murashkine0060932014-01-17 17:24:11 -08003635 * </code></pre>
3636 * <p><img alt="Inverting mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/inverse_tonemap.png" /></p>
3637 * <p>Gamma 1/2.2 mapping, with 16 control points:</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003638 * <pre><code>android.tonemap.curveRed = [
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003639 * 0.0000, 0.0000, 0.0667, 0.2920, 0.1333, 0.4002, 0.2000, 0.4812,
3640 * 0.2667, 0.5484, 0.3333, 0.6069, 0.4000, 0.6594, 0.4667, 0.7072,
3641 * 0.5333, 0.7515, 0.6000, 0.7928, 0.6667, 0.8317, 0.7333, 0.8685,
3642 * 0.8000, 0.9035, 0.8667, 0.9370, 0.9333, 0.9691, 1.0000, 1.0000 ]
Igor Murashkine0060932014-01-17 17:24:11 -08003643 * </code></pre>
3644 * <p><img alt="Gamma = 1/2.2 tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/gamma_tonemap.png" /></p>
3645 * <p>Standard sRGB gamma mapping, per IEC 61966-2-1:1999, with 16 control points:</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003646 * <pre><code>android.tonemap.curveRed = [
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003647 * 0.0000, 0.0000, 0.0667, 0.2864, 0.1333, 0.4007, 0.2000, 0.4845,
3648 * 0.2667, 0.5532, 0.3333, 0.6125, 0.4000, 0.6652, 0.4667, 0.7130,
3649 * 0.5333, 0.7569, 0.6000, 0.7977, 0.6667, 0.8360, 0.7333, 0.8721,
3650 * 0.8000, 0.9063, 0.8667, 0.9389, 0.9333, 0.9701, 1.0000, 1.0000 ]
Igor Murashkine0060932014-01-17 17:24:11 -08003651 * </code></pre>
3652 * <p><img alt="sRGB tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/srgb_tonemap.png" /></p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003653 * <p><b>Range of valid values:</b><br>
3654 * 0-1 on both input and output coordinates, normalized
3655 * as a floating-point value such that 0 == black and 1 == white.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003656 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3657 * <p><b>Full capability</b> -
3658 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3659 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003660 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003661 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Igor Murashkine0060932014-01-17 17:24:11 -08003662 * @see CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003663 * @see CaptureRequest#TONEMAP_MODE
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003664 * @hide
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003665 */
3666 public static final Key<float[]> TONEMAP_CURVE_RED =
3667 new Key<float[]>("android.tonemap.curveRed", float[].class);
3668
3669 /**
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003670 * <p>Tonemapping / contrast / gamma curve to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode}
3671 * is CONTRAST_CURVE.</p>
3672 * <p>The tonemapCurve consist of three curves for each of red, green, and blue
3673 * channels respectively. The following example uses the red channel as an
3674 * example. The same logic applies to green and blue channel.
3675 * Each channel's curve is defined by an array of control points:</p>
3676 * <pre><code>curveRed =
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003677 * [ P0(in, out), P1(in, out), P2(in, out), P3(in, out), ..., PN(in, out) ]
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003678 * 2 &lt;= N &lt;= {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}</code></pre>
3679 * <p>These are sorted in order of increasing <code>Pin</code>; it is always
3680 * guaranteed that input values 0.0 and 1.0 are included in the list to
3681 * define a complete mapping. For input values between control points,
3682 * the camera device must linearly interpolate between the control
3683 * points.</p>
3684 * <p>Each curve can have an independent number of points, and the number
3685 * of points can be less than max (that is, the request doesn't have to
3686 * always provide a curve with number of points equivalent to
3687 * {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS android.tonemap.maxCurvePoints}).</p>
3688 * <p>A few examples, and their corresponding graphical mappings; these
3689 * only specify the red channel and the precision is limited to 4
3690 * digits, for conciseness.</p>
3691 * <p>Linear mapping:</p>
3692 * <pre><code>curveRed = [ (0, 0), (1.0, 1.0) ]
3693 * </code></pre>
3694 * <p><img alt="Linear mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/linear_tonemap.png" /></p>
3695 * <p>Invert mapping:</p>
3696 * <pre><code>curveRed = [ (0, 1.0), (1.0, 0) ]
3697 * </code></pre>
3698 * <p><img alt="Inverting mapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/inverse_tonemap.png" /></p>
3699 * <p>Gamma 1/2.2 mapping, with 16 control points:</p>
3700 * <pre><code>curveRed = [
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003701 * (0.0000, 0.0000), (0.0667, 0.2920), (0.1333, 0.4002), (0.2000, 0.4812),
3702 * (0.2667, 0.5484), (0.3333, 0.6069), (0.4000, 0.6594), (0.4667, 0.7072),
3703 * (0.5333, 0.7515), (0.6000, 0.7928), (0.6667, 0.8317), (0.7333, 0.8685),
3704 * (0.8000, 0.9035), (0.8667, 0.9370), (0.9333, 0.9691), (1.0000, 1.0000) ]
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003705 * </code></pre>
3706 * <p><img alt="Gamma = 1/2.2 tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/gamma_tonemap.png" /></p>
3707 * <p>Standard sRGB gamma mapping, per IEC 61966-2-1:1999, with 16 control points:</p>
3708 * <pre><code>curveRed = [
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003709 * (0.0000, 0.0000), (0.0667, 0.2864), (0.1333, 0.4007), (0.2000, 0.4845),
3710 * (0.2667, 0.5532), (0.3333, 0.6125), (0.4000, 0.6652), (0.4667, 0.7130),
3711 * (0.5333, 0.7569), (0.6000, 0.7977), (0.6667, 0.8360), (0.7333, 0.8721),
3712 * (0.8000, 0.9063), (0.8667, 0.9389), (0.9333, 0.9701), (1.0000, 1.0000) ]
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003713 * </code></pre>
3714 * <p><img alt="sRGB tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/srgb_tonemap.png" /></p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003715 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3716 * <p><b>Full capability</b> -
3717 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3718 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003719 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003720 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003721 * @see CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS
3722 * @see CaptureRequest#TONEMAP_MODE
3723 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003724 @PublicKey
3725 @SyntheticKey
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003726 public static final Key<android.hardware.camera2.params.TonemapCurve> TONEMAP_CURVE =
3727 new Key<android.hardware.camera2.params.TonemapCurve>("android.tonemap.curve", android.hardware.camera2.params.TonemapCurve.class);
3728
3729 /**
Igor Murashkine0060932014-01-17 17:24:11 -08003730 * <p>High-level global contrast/gamma/tonemapping control.</p>
3731 * <p>When switching to an application-defined contrast curve by setting
3732 * {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} to CONTRAST_CURVE, the curve is defined
3733 * per-channel with a set of <code>(in, out)</code> points that specify the
3734 * mapping from input high-bit-depth pixel value to the output
3735 * low-bit-depth value. Since the actual pixel ranges of both input
3736 * and output may change depending on the camera pipeline, the values
3737 * are specified by normalized floating-point numbers.</p>
3738 * <p>More-complex color mapping operations such as 3D color look-up
3739 * tables, selective chroma enhancement, or other non-linear color
3740 * transforms will be disabled when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3741 * CONTRAST_CURVE.</p>
3742 * <p>When using either FAST or HIGH_QUALITY, the camera device will
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003743 * emit its own tonemap curve in {@link CaptureRequest#TONEMAP_CURVE android.tonemap.curve}.
Igor Murashkine0060932014-01-17 17:24:11 -08003744 * These values are always available, and as close as possible to the
3745 * actually used nonlinear/nonglobal transforms.</p>
Zhijun Hefa7c7552014-05-22 16:36:02 -07003746 * <p>If a request is sent with CONTRAST_CURVE with the camera device's
Igor Murashkine0060932014-01-17 17:24:11 -08003747 * provided curve in FAST or HIGH_QUALITY, the image's tonemap will be
3748 * roughly the same.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003749 * <p><b>Possible values:</b>
3750 * <ul>
3751 * <li>{@link #TONEMAP_MODE_CONTRAST_CURVE CONTRAST_CURVE}</li>
3752 * <li>{@link #TONEMAP_MODE_FAST FAST}</li>
3753 * <li>{@link #TONEMAP_MODE_HIGH_QUALITY HIGH_QUALITY}</li>
Yin-Chia Yeh956c52b2015-02-06 11:23:25 -08003754 * <li>{@link #TONEMAP_MODE_GAMMA_VALUE GAMMA_VALUE}</li>
3755 * <li>{@link #TONEMAP_MODE_PRESET_CURVE PRESET_CURVE}</li>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003756 * </ul></p>
3757 * <p><b>Available values for this device:</b><br>
3758 * {@link CameraCharacteristics#TONEMAP_AVAILABLE_TONE_MAP_MODES android.tonemap.availableToneMapModes}</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003759 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3760 * <p><b>Full capability</b> -
3761 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3762 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Igor Murashkin3242f4f2014-01-15 12:27:41 -08003763 *
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003764 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Ruben Brunk6dc379c2014-03-04 15:04:00 -08003765 * @see CameraCharacteristics#TONEMAP_AVAILABLE_TONE_MAP_MODES
Yin-Chia Yeh8490ace2014-05-27 10:04:54 -07003766 * @see CaptureRequest#TONEMAP_CURVE
Igor Murashkine0060932014-01-17 17:24:11 -08003767 * @see CaptureRequest#TONEMAP_MODE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003768 * @see #TONEMAP_MODE_CONTRAST_CURVE
3769 * @see #TONEMAP_MODE_FAST
3770 * @see #TONEMAP_MODE_HIGH_QUALITY
Yin-Chia Yeh956c52b2015-02-06 11:23:25 -08003771 * @see #TONEMAP_MODE_GAMMA_VALUE
3772 * @see #TONEMAP_MODE_PRESET_CURVE
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003773 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003774 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003775 public static final Key<Integer> TONEMAP_MODE =
3776 new Key<Integer>("android.tonemap.mode", int.class);
3777
3778 /**
Yin-Chia Yeh956c52b2015-02-06 11:23:25 -08003779 * <p>Tonemapping curve to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3780 * GAMMA_VALUE</p>
3781 * <p>The tonemap curve will be defined the following formula:
3782 * * OUT = pow(IN, 1.0 / gamma)
3783 * where IN and OUT is the input pixel value scaled to range [0.0, 1.0],
3784 * pow is the power function and gamma is the gamma value specified by this
3785 * key.</p>
3786 * <p>The same curve will be applied to all color channels. The camera device
3787 * may clip the input gamma value to its supported range. The actual applied
3788 * value will be returned in capture result.</p>
3789 * <p>The valid range of gamma value varies on different devices, but values
3790 * within [1.0, 5.0] are guaranteed not to be clipped.</p>
3791 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3792 *
3793 * @see CaptureRequest#TONEMAP_MODE
3794 */
3795 @PublicKey
3796 public static final Key<Float> TONEMAP_GAMMA =
3797 new Key<Float>("android.tonemap.gamma", float.class);
3798
3799 /**
3800 * <p>Tonemapping curve to use when {@link CaptureRequest#TONEMAP_MODE android.tonemap.mode} is
3801 * PRESET_CURVE</p>
3802 * <p>The tonemap curve will be defined by specified standard.</p>
3803 * <p>sRGB (approximated by 16 control points):</p>
3804 * <p><img alt="sRGB tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/srgb_tonemap.png" /></p>
3805 * <p>Rec. 709 (approximated by 16 control points):</p>
3806 * <p><img alt="Rec. 709 tonemapping curve" src="../../../../images/camera2/metadata/android.tonemap.curveRed/rec709_tonemap.png" /></p>
3807 * <p>Note that above figures show a 16 control points approximation of preset
3808 * curves. Camera devices may apply a different approximation to the curve.</p>
3809 * <p><b>Possible values:</b>
3810 * <ul>
3811 * <li>{@link #TONEMAP_PRESET_CURVE_SRGB SRGB}</li>
3812 * <li>{@link #TONEMAP_PRESET_CURVE_REC709 REC709}</li>
3813 * </ul></p>
3814 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3815 *
3816 * @see CaptureRequest#TONEMAP_MODE
3817 * @see #TONEMAP_PRESET_CURVE_SRGB
3818 * @see #TONEMAP_PRESET_CURVE_REC709
3819 */
3820 @PublicKey
3821 public static final Key<Integer> TONEMAP_PRESET_CURVE =
3822 new Key<Integer>("android.tonemap.presetCurve", int.class);
3823
3824 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003825 * <p>This LED is nominally used to indicate to the user
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003826 * that the camera is powered on and may be streaming images back to the
3827 * Application Processor. In certain rare circumstances, the OS may
3828 * disable this when video is processed locally and not transmitted to
Igor Murashkinace5bf02013-12-10 17:36:40 -08003829 * any untrusted applications.</p>
3830 * <p>In particular, the LED <em>must</em> always be on when the data could be
3831 * transmitted off the device. The LED <em>should</em> always be on whenever
3832 * data is stored locally on the device.</p>
3833 * <p>The LED <em>may</em> be off if a trusted application is using the data that
3834 * doesn't violate the above rules.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003835 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003836 * @hide
3837 */
3838 public static final Key<Boolean> LED_TRANSMIT =
3839 new Key<Boolean>("android.led.transmit", boolean.class);
3840
3841 /**
Igor Murashkinace5bf02013-12-10 17:36:40 -08003842 * <p>Whether black-level compensation is locked
Eino-Ville Talvala0956af52013-12-26 13:19:10 -08003843 * to its current values, or is free to vary.</p>
3844 * <p>Whether the black level offset was locked for this frame. Should be
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003845 * ON if {@link CaptureRequest#BLACK_LEVEL_LOCK android.blackLevel.lock} was ON in the capture request, unless
Eino-Ville Talvala0956af52013-12-26 13:19:10 -08003846 * a change in other capture settings forced the camera device to
3847 * perform a black level reset.</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003848 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
3849 * <p><b>Full capability</b> -
3850 * Present on all camera devices that report being {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_FULL HARDWARE_LEVEL_FULL} devices in the
3851 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Eino-Ville Talvala0da8bf52014-01-08 16:18:35 -08003852 *
3853 * @see CaptureRequest#BLACK_LEVEL_LOCK
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003854 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003855 */
Igor Murashkin6c76f582014-07-15 17:19:49 -07003856 @PublicKey
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003857 public static final Key<Boolean> BLACK_LEVEL_LOCK =
3858 new Key<Boolean>("android.blackLevel.lock", boolean.class);
3859
Igor Murashkin3865a842014-01-17 18:18:39 -08003860 /**
3861 * <p>The frame number corresponding to the last request
3862 * with which the output result (metadata + buffers) has been fully
3863 * synchronized.</p>
3864 * <p>When a request is submitted to the camera device, there is usually a
3865 * delay of several frames before the controls get applied. A camera
3866 * device may either choose to account for this delay by implementing a
3867 * pipeline and carefully submit well-timed atomic control updates, or
3868 * it may start streaming control changes that span over several frame
3869 * boundaries.</p>
3870 * <p>In the latter case, whenever a request's settings change relative to
3871 * the previous submitted request, the full set of changes may take
3872 * multiple frame durations to fully take effect. Some settings may
3873 * take effect sooner (in less frame durations) than others.</p>
3874 * <p>While a set of control changes are being propagated, this value
3875 * will be CONVERGING.</p>
3876 * <p>Once it is fully known that a set of control changes have been
3877 * finished propagating, and the resulting updated control settings
3878 * have been read back by the camera device, this value will be set
3879 * to a non-negative frame number (corresponding to the request to
3880 * which the results have synchronized to).</p>
3881 * <p>Older camera device implementations may not have a way to detect
3882 * when all camera controls have been applied, and will always set this
3883 * value to UNKNOWN.</p>
3884 * <p>FULL capability devices will always have this value set to the
3885 * frame number of the request corresponding to this result.</p>
3886 * <p><em>Further details</em>:</p>
3887 * <ul>
3888 * <li>Whenever a request differs from the last request, any future
3889 * results not yet returned may have this value set to CONVERGING (this
3890 * could include any in-progress captures not yet returned by the camera
3891 * device, for more details see pipeline considerations below).</li>
3892 * <li>Submitting a series of multiple requests that differ from the
3893 * previous request (e.g. r1, r2, r3 s.t. r1 != r2 != r3)
3894 * moves the new synchronization frame to the last non-repeating
3895 * request (using the smallest frame number from the contiguous list of
3896 * repeating requests).</li>
3897 * <li>Submitting the same request repeatedly will not change this value
3898 * to CONVERGING, if it was already a non-negative value.</li>
3899 * <li>When this value changes to non-negative, that means that all of the
3900 * metadata controls from the request have been applied, all of the
3901 * metadata controls from the camera device have been read to the
3902 * updated values (into the result), and all of the graphics buffers
3903 * corresponding to this result are also synchronized to the request.</li>
3904 * </ul>
3905 * <p><em>Pipeline considerations</em>:</p>
3906 * <p>Submitting a request with updated controls relative to the previously
3907 * submitted requests may also invalidate the synchronization state
3908 * of all the results corresponding to currently in-flight requests.</p>
3909 * <p>In other words, results for this current request and up to
3910 * {@link CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH android.request.pipelineMaxDepth} prior requests may have their
3911 * android.sync.frameNumber change to CONVERGING.</p>
Eino-Ville Talvalafd3e2892014-10-06 10:23:55 -07003912 * <p><b>Possible values:</b>
3913 * <ul>
3914 * <li>{@link #SYNC_FRAME_NUMBER_CONVERGING CONVERGING}</li>
3915 * <li>{@link #SYNC_FRAME_NUMBER_UNKNOWN UNKNOWN}</li>
3916 * </ul></p>
3917 * <p><b>Available values for this device:</b><br>
3918 * Either a non-negative value corresponding to a
3919 * <code>frame_number</code>, or one of the two enums (CONVERGING / UNKNOWN).</p>
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003920 * <p>This key is available on all devices.</p>
Igor Murashkin3865a842014-01-17 18:18:39 -08003921 *
3922 * @see CameraCharacteristics#REQUEST_PIPELINE_MAX_DEPTH
3923 * @see #SYNC_FRAME_NUMBER_CONVERGING
3924 * @see #SYNC_FRAME_NUMBER_UNKNOWN
3925 * @hide
3926 */
Zhijun He4f91e2a2014-04-17 13:20:21 -07003927 public static final Key<Long> SYNC_FRAME_NUMBER =
3928 new Key<Long>("android.sync.frameNumber", long.class);
Igor Murashkin3865a842014-01-17 18:18:39 -08003929
Zhijun He0e99c222015-01-29 15:26:05 -08003930 /**
3931 * <p>The amount of exposure time increase factor applied to the original output
3932 * frame by the application processing before sending for reprocessing.</p>
3933 * <p>This is optional, and will be supported if the camera device supports YUV_REPROCESSING
3934 * capability ({@link CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES android.request.availableCapabilities} contains YUV_REPROCESSING).</p>
3935 * <p>For some YUV reprocessing use cases, the application may choose to filter the original
3936 * output frames to effectively reduce the noise to the same level as a frame that was
3937 * captured with longer exposure time. To be more specific, assuming the original captured
3938 * images were captured with a sensitivity of S and an exposure time of T, the model in
3939 * the camera device is that the amount of noise in the image would be approximately what
3940 * would be expected if the original capture parameters had been a sensitivity of
3941 * S/effectiveExposureFactor and an exposure time of T*effectiveExposureFactor, rather
3942 * than S and T respectively. If the captured images were processed by the application
3943 * before being sent for reprocessing, then the application may have used image processing
3944 * algorithms and/or multi-frame image fusion to reduce the noise in the
3945 * application-processed images (input images). By using the effectiveExposureFactor
3946 * control, the application can communicate to the camera device the actual noise level
3947 * improvement in the application-processed image. With this information, the camera
3948 * device can select appropriate noise reduction and edge enhancement parameters to avoid
3949 * excessive noise reduction ({@link CaptureRequest#NOISE_REDUCTION_MODE android.noiseReduction.mode}) and insufficient edge
3950 * enhancement ({@link CaptureRequest#EDGE_MODE android.edge.mode}) being applied to the reprocessed frames.</p>
3951 * <p>For example, for multi-frame image fusion use case, the application may fuse
3952 * multiple output frames together to a final frame for reprocessing. When N image are
3953 * fused into 1 image for reprocessing, the exposure time increase factor could be up to
3954 * square root of N (based on a simple photon shot noise model). The camera device will
3955 * adjust the reprocessing noise reduction and edge enhancement parameters accordingly to
3956 * produce the best quality images.</p>
3957 * <p>This is relative factor, 1.0 indicates the application hasn't processed the input
3958 * buffer in a way that affects its effective exposure time.</p>
3959 * <p>This control is only effective for YUV reprocessing capture request. For noise
3960 * reduction reprocessing, it is only effective when <code>{@link CaptureRequest#NOISE_REDUCTION_MODE android.noiseReduction.mode} != OFF</code>.
3961 * Similarly, for edge enhancement reprocessing, it is only effective when
3962 * <code>{@link CaptureRequest#EDGE_MODE android.edge.mode} != OFF</code>.</p>
3963 * <p><b>Units</b>: Relative exposure time increase factor.</p>
3964 * <p><b>Range of valid values:</b><br>
3965 * &gt;= 1.0</p>
3966 * <p><b>Optional</b> - This value may be {@code null} on some devices.</p>
Zhijun He513f7c32015-04-24 18:23:54 -07003967 * <p><b>Limited capability</b> -
3968 * Present on all camera devices that report being at least {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED HARDWARE_LEVEL_LIMITED} devices in the
3969 * {@link CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL android.info.supportedHardwareLevel} key</p>
Zhijun He0e99c222015-01-29 15:26:05 -08003970 *
3971 * @see CaptureRequest#EDGE_MODE
Zhijun He513f7c32015-04-24 18:23:54 -07003972 * @see CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL
Zhijun He0e99c222015-01-29 15:26:05 -08003973 * @see CaptureRequest#NOISE_REDUCTION_MODE
3974 * @see CameraCharacteristics#REQUEST_AVAILABLE_CAPABILITIES
3975 */
3976 @PublicKey
3977 public static final Key<Float> REPROCESS_EFFECTIVE_EXPOSURE_FACTOR =
3978 new Key<Float>("android.reprocess.effectiveExposureFactor", float.class);
3979
Eino-Ville Talvala5a32b20c2013-08-08 12:38:36 -07003980 /*~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~
3981 * End generated code
3982 *~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~O@*/
Igor Murashkin6c76f582014-07-15 17:19:49 -07003983
Igor Murashkin4b8cd6b2014-10-02 16:00:52 -07003984
3985
Eino-Ville Talvalab2675542012-12-12 13:29:45 -08003986}