Loading api/current.txt +1 −1 Original line number Diff line number Diff line Loading @@ -12646,7 +12646,6 @@ package android.hardware.camera2 { field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_INFO_TIMESTAMP_CALIBRATION; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_INFO_WHITE_LEVEL; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_MAX_ANALOG_SENSITIVITY; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_NOISE_PROFILE; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_ORIENTATION; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_REFERENCE_ILLUMINANT1; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_REFERENCE_ILLUMINANT2; Loading Loading @@ -13020,6 +13019,7 @@ package android.hardware.camera2 { field public static final android.hardware.camera2.CaptureResult.Key SENSOR_FRAME_DURATION; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_GREEN_SPLIT; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_NEUTRAL_COLOR_POINT; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_NOISE_PROFILE; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_ROLLING_SHUTTER_SKEW; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_SENSITIVITY; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_TEST_PATTERN_DATA; core/java/android/hardware/camera2/CameraCharacteristics.java +0 −27 Original line number Diff line number Diff line Loading @@ -1809,33 +1809,6 @@ public final class CameraCharacteristics extends CameraMetadata<CameraCharacteri public static final Key<Integer> SENSOR_ORIENTATION = new Key<Integer>("android.sensor.orientation", int.class); /** * <p>Noise model coefficients for each CFA mosaic channel.</p> * <p>This tag contains two noise model coefficients for each CFA channel * corresponding to the sensor amplification (S) and sensor readout * noise (O). These are given as pairs of coefficients for each channel * in the same order as channels listed for the CFA layout tag * (see {@link CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT android.sensor.info.colorFilterArrangement}). This is * represented as an array of Pair<Double, Double>, where * the first member of the Pair at index n is the S coefficient and the * second member is the O coefficient for the nth color channel in the CFA.</p> * <p>These coefficients are used in a two parameter noise model to describe * the amount of noise present in the image for each CFA channel. The * noise model used here is:</p> * <p>N(x) = sqrt(Sx + O)</p> * <p>Where x represents the recorded signal of a CFA channel normalized to * the range [0, 1], and S and O are the noise model coeffiecients for * that channel.</p> * <p>A more detailed description of the noise model can be found in the * Adobe DNG specification for the NoiseProfile tag.</p> * <p><b>Optional</b> - This value may be {@code null} on some devices.</p> * * @see CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT */ @PublicKey public static final Key<android.util.Pair<Double,Double>[]> SENSOR_NOISE_PROFILE = new Key<android.util.Pair<Double,Double>[]>("android.sensor.noiseProfile", new TypeReference<android.util.Pair<Double,Double>[]>() {{ }}); /** * <p>Lists the supported sensor test pattern modes for {@link CaptureRequest#SENSOR_TEST_PATTERN_MODE android.sensor.testPatternMode}.</p> * <p>Optional. Defaults to [OFF].</p> Loading core/java/android/hardware/camera2/CaptureResult.java +27 −0 Original line number Diff line number Diff line Loading @@ -2241,6 +2241,33 @@ public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> { public static final Key<Rational[]> SENSOR_NEUTRAL_COLOR_POINT = new Key<Rational[]>("android.sensor.neutralColorPoint", Rational[].class); /** * <p>Noise model coefficients for each CFA mosaic channel.</p> * <p>This tag contains two noise model coefficients for each CFA channel * corresponding to the sensor amplification (S) and sensor readout * noise (O). These are given as pairs of coefficients for each channel * in the same order as channels listed for the CFA layout tag * (see {@link CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT android.sensor.info.colorFilterArrangement}). This is * represented as an array of Pair<Double, Double>, where * the first member of the Pair at index n is the S coefficient and the * second member is the O coefficient for the nth color channel in the CFA.</p> * <p>These coefficients are used in a two parameter noise model to describe * the amount of noise present in the image for each CFA channel. The * noise model used here is:</p> * <p>N(x) = sqrt(Sx + O)</p> * <p>Where x represents the recorded signal of a CFA channel normalized to * the range [0, 1], and S and O are the noise model coeffiecients for * that channel.</p> * <p>A more detailed description of the noise model can be found in the * Adobe DNG specification for the NoiseProfile tag.</p> * <p><b>Optional</b> - This value may be {@code null} on some devices.</p> * * @see CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT */ @PublicKey public static final Key<android.util.Pair<Double,Double>[]> SENSOR_NOISE_PROFILE = new Key<android.util.Pair<Double,Double>[]>("android.sensor.noiseProfile", new TypeReference<android.util.Pair<Double,Double>[]>() {{ }}); /** * <p>The worst-case divergence between Bayer green channels.</p> * <p>This value is an estimate of the worst case split between the Loading Loading
api/current.txt +1 −1 Original line number Diff line number Diff line Loading @@ -12646,7 +12646,6 @@ package android.hardware.camera2 { field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_INFO_TIMESTAMP_CALIBRATION; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_INFO_WHITE_LEVEL; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_MAX_ANALOG_SENSITIVITY; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_NOISE_PROFILE; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_ORIENTATION; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_REFERENCE_ILLUMINANT1; field public static final android.hardware.camera2.CameraCharacteristics.Key SENSOR_REFERENCE_ILLUMINANT2; Loading Loading @@ -13020,6 +13019,7 @@ package android.hardware.camera2 { field public static final android.hardware.camera2.CaptureResult.Key SENSOR_FRAME_DURATION; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_GREEN_SPLIT; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_NEUTRAL_COLOR_POINT; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_NOISE_PROFILE; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_ROLLING_SHUTTER_SKEW; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_SENSITIVITY; field public static final android.hardware.camera2.CaptureResult.Key SENSOR_TEST_PATTERN_DATA;
core/java/android/hardware/camera2/CameraCharacteristics.java +0 −27 Original line number Diff line number Diff line Loading @@ -1809,33 +1809,6 @@ public final class CameraCharacteristics extends CameraMetadata<CameraCharacteri public static final Key<Integer> SENSOR_ORIENTATION = new Key<Integer>("android.sensor.orientation", int.class); /** * <p>Noise model coefficients for each CFA mosaic channel.</p> * <p>This tag contains two noise model coefficients for each CFA channel * corresponding to the sensor amplification (S) and sensor readout * noise (O). These are given as pairs of coefficients for each channel * in the same order as channels listed for the CFA layout tag * (see {@link CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT android.sensor.info.colorFilterArrangement}). This is * represented as an array of Pair<Double, Double>, where * the first member of the Pair at index n is the S coefficient and the * second member is the O coefficient for the nth color channel in the CFA.</p> * <p>These coefficients are used in a two parameter noise model to describe * the amount of noise present in the image for each CFA channel. The * noise model used here is:</p> * <p>N(x) = sqrt(Sx + O)</p> * <p>Where x represents the recorded signal of a CFA channel normalized to * the range [0, 1], and S and O are the noise model coeffiecients for * that channel.</p> * <p>A more detailed description of the noise model can be found in the * Adobe DNG specification for the NoiseProfile tag.</p> * <p><b>Optional</b> - This value may be {@code null} on some devices.</p> * * @see CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT */ @PublicKey public static final Key<android.util.Pair<Double,Double>[]> SENSOR_NOISE_PROFILE = new Key<android.util.Pair<Double,Double>[]>("android.sensor.noiseProfile", new TypeReference<android.util.Pair<Double,Double>[]>() {{ }}); /** * <p>Lists the supported sensor test pattern modes for {@link CaptureRequest#SENSOR_TEST_PATTERN_MODE android.sensor.testPatternMode}.</p> * <p>Optional. Defaults to [OFF].</p> Loading
core/java/android/hardware/camera2/CaptureResult.java +27 −0 Original line number Diff line number Diff line Loading @@ -2241,6 +2241,33 @@ public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> { public static final Key<Rational[]> SENSOR_NEUTRAL_COLOR_POINT = new Key<Rational[]>("android.sensor.neutralColorPoint", Rational[].class); /** * <p>Noise model coefficients for each CFA mosaic channel.</p> * <p>This tag contains two noise model coefficients for each CFA channel * corresponding to the sensor amplification (S) and sensor readout * noise (O). These are given as pairs of coefficients for each channel * in the same order as channels listed for the CFA layout tag * (see {@link CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT android.sensor.info.colorFilterArrangement}). This is * represented as an array of Pair<Double, Double>, where * the first member of the Pair at index n is the S coefficient and the * second member is the O coefficient for the nth color channel in the CFA.</p> * <p>These coefficients are used in a two parameter noise model to describe * the amount of noise present in the image for each CFA channel. The * noise model used here is:</p> * <p>N(x) = sqrt(Sx + O)</p> * <p>Where x represents the recorded signal of a CFA channel normalized to * the range [0, 1], and S and O are the noise model coeffiecients for * that channel.</p> * <p>A more detailed description of the noise model can be found in the * Adobe DNG specification for the NoiseProfile tag.</p> * <p><b>Optional</b> - This value may be {@code null} on some devices.</p> * * @see CameraCharacteristics#SENSOR_INFO_COLOR_FILTER_ARRANGEMENT */ @PublicKey public static final Key<android.util.Pair<Double,Double>[]> SENSOR_NOISE_PROFILE = new Key<android.util.Pair<Double,Double>[]>("android.sensor.noiseProfile", new TypeReference<android.util.Pair<Double,Double>[]>() {{ }}); /** * <p>The worst-case divergence between Bayer green channels.</p> * <p>This value is an estimate of the worst case split between the Loading