HomeSort by relevance Sort by last modified time
    Searched refs:exposure (Results 1 - 25 of 36) sorted by null

1 2

  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
exposure_f.rs 28 float4 RS_KERNEL exposure(float4 in)
  /cts/apps/CameraITS/tools/
config.py 20 """Set the target exposure.
26 python config.py - Measure the target exposure, and cache it.
27 python config.py EXP - Hard-code (and cache) the target exposure.
32 exposure value is cleared regardless.
34 If no exposure value is provided, the camera will be used to measure
39 For bring-up purposes, the exposure value may be manually set to a hard-
51 # Automatically measure target exposure.
53 exposure = its.target.get_target_exposure(cam)
55 # Hard-code the target exposure.
56 exposure = int(args[1]
    [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
CameraManualControls.java 44 public void setExposure(long exposure) {
45 mExposure = exposure;
  /external/libxcam/modules/isp/
isp_controller.cpp 114 const struct atomisp_exposure &exposure = res->get_isp_config (); local
115 return set_3a_exposure (exposure);
121 IspController::set_3a_exposure (const struct atomisp_exposure &exposure)
123 if ( _device->io_control (ATOMISP_IOC_S_EXPOSURE, (struct atomisp_exposure*)(&exposure)) < 0) {
124 XCAM_LOG_WARNING (" set exposure result failed to device");
127 XCAM_LOG_DEBUG ("isp set exposure result, integration_time:%d, gain code:%d",
128 exposure.integration_time[0], exposure.gain[0]);
isp_controller.h 44 XCamReturn set_3a_exposure (const struct atomisp_exposure &exposure);
aiq_handler.cpp 316 this->aiq_exp_param = *result->exposures[0].exposure;
325 this->ae_exp_ret.exposure = &this->aiq_exp_param;
537 XCam3aResultExposure exposure; local
546 xcam_mem_clear (exposure);
547 exposure.exposure_time = _result.aiq_exp_param.exposure_time_us;
548 exposure.analog_gain = _result.aiq_exp_param.analog_gain;
549 exposure.digital_gain = _result.aiq_exp_param.digital_gain;
550 exposure.aperture = _result.aiq_exp_param.aperture_fn;
551 result->set_standard_result (exposure);
592 ia_aiq_exposure_parameters cur_aiq_exp = *ae_result->exposures[0].exposure;
    [all...]
aiq3a_utils.cpp 226 const XCam3aResultExposure &exposure = isp_exposure->get_standard_result ();
229 *new_exposure = exposure;
  /external/libxcam/plugins/3a/hybrid/
sample.cpp 156 XCam3aResultExposure *exposure = xcam_malloc0_type (XCam3aResultExposure); local
157 XCAM_ASSERT (exposure);
158 exposure->head.type = XCAM_3A_RESULT_EXPOSURE;
159 exposure->head.process_type = XCAM_IMAGE_PROCESS_ALWAYS;
160 exposure->head.version = XCAM_VERSION;
161 exposure->exposure_time = 9986; // 9.986ms
162 exposure->analog_gain = 10;
163 results[0] = (XCam3aResultHead *)exposure;
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
exposure.rs 26 uchar4 RS_KERNEL exposure(uchar4 in)
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
exposure.rs 26 uchar4 RS_KERNEL exposure(uchar4 in)
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
exposure.rs 26 uchar4 RS_KERNEL exposure(uchar4 in)
  /external/libxcam/xcore/
x3a_analyzer_simple.cpp 228 XCam3aResultExposure exposure; local
230 xcam_mem_clear (exposure);
231 exposure.digital_gain = 1.0;
235 exposure.exposure_time = _last_target_exposure;
236 exposure.analog_gain = 1.0;
238 result->set_standard_result (exposure);
257 exposure.exposure_time = SIMPLE_MAX_TARGET_EXPOSURE_TIME;
258 exposure.analog_gain = target_exposure / exposure.exposure_time;
260 exposure.exposure_time = target_exposure
    [all...]
  /external/dng_sdk/source/
dng_render.h 33 /// \brief Curve for pre-exposure-compensation adjustment based on noise floor,
61 /// \brief Exposure compensation curve for a given compensation amount in stops using
79 dng_function_exposure_tone (real64 exposure);
187 /// Set exposure compensation.
188 /// \param exposure Compensation value in stops, positive or negative.
190 void SetExposure (real64 exposure)
192 fExposure = exposure;
195 /// Get exposure compensation.
198 real64 Exposure () const
  /cts/apps/CameraITS/pymodules/its/
target.py 28 """Use device 3A and captured shots to determine scene exposure.
38 the exact exposure level that will result in a center 10% by 10% patch of
44 The computed exposure value is the product of the sensitivity (ISO) and
45 exposure time (ns) to achieve that sensor exposure level.
51 The measured product of sensitivity and exposure time that results in
54 print "Measuring target exposure"
68 # Capture a manual shot with this exposure, using a linear tonemap.
83 # Compute the exposure value that would result in a luma of 0.5.
86 def __set_cached_target_exposure(exposure)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterExposure.java 24 private static final String SERIALIZATION_NAME = "EXPOSURE";
26 mName = "Exposure";
32 representation.setName("Exposure");
35 representation.setTextId(R.string.exposure);
  /packages/apps/Gallery2/jni/
Android.mk 37 filters/exposure.c \
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 143 ListPreference exposure = group.findPreference(KEY_EXPOSURE); local
185 if (exposure != null) buildExposureCompensation(group, exposure);
196 PreferenceGroup group, ListPreference exposure) {
200 removePreference(group, exposure.getKey());
205 // show only integer values for exposure compensation
216 exposure.setEntries(entries);
217 exposure.setEntryValues(entryValues);
364 String exposure = preferences.getString( local
368 return Integer.parseInt(exposure);
    [all...]
  /cts/apps/CameraITS/tests/scene0/
test_test_patterns.py 128 exposure = min(props['android.sensor.info.exposureTimeRange'])
133 exposure)
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
Android.mk 33 exposure.cpp \
  /packages/apps/Camera2/src/com/android/camera/one/v2/common/
BasicCameraFactory.java 52 * <li>Auto exposure, based on the current flash-setting</li>
85 Observable<Integer> exposure,
95 CaptureRequest.CONTROL_AE_EXPOSURE_COMPENSATION, exposure);
134 SafeCloseable exposureCallback = exposure.addCallback(mPreviewUpdater, MoreExecutors
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
NotificationInteractionTests.java 191 int exposure = (Integer) firstLog.peek() local
194 assertTrue("first note visible before it was updated", freshness > exposure);
195 assertTrue("first note visibility log should have zero exposure time", exposure == 0);
216 exposure = (Integer) firstLog.peek()
218 assertTrue("first note visibility log should have nonzero exposure time", exposure > 0);
  /cts/tests/camera/src/android/hardware/camera2/cts/
BurstCaptureTest.java 256 "exposure time %d ns", cameraId, burstFrameDuration, burstExposure),
259 assertTrue(String.format("Cam %s: Exposure time is not valid: %d",
288 long exposure = burstResult.get(CaptureResult.SENSOR_EXPOSURE_TIME); local
290 assertTrue("Cam " + cameraId + ": Exposure not locked!",
291 exposure == burstExposure);
  /external/libxcam/
README.md 37 - Auto whitebalance, auto exposure, auto focus, black level correction,
  /frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
CameraView.java 276 public void setExposure(long exposure) {
277 mCameraOps.setExposure(exposure);
  /frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
CameraView.java 275 public void setExposure(long exposure) {
276 mCameraOps.setExposure(exposure);

Completed in 2015 milliseconds

1 2