在Camera2 API中切换闪光灯

时间:2016-05-10 16:56:35

标签: android android-camera android-camera2 camera-flash

我的问题是当我在不同的闪存模式之间切换然后想要捕获图像时,我的captureBuilder将不会设置所选的闪存模式。它仅在我关闭并重新打开相机时才有效。

我以https://github.com/googlesamples/android-Camera2Basic为起点。

我的方法:

   private void captureStillPicture() {
  try {
     final Activity activity = (Activity) context;
     if (null == activity || null == mCameraDevice) {
        return;
     }
     // This is the CaptureRequest.Builder that we use to take a picture.
     CaptureRequest.Builder captureBuilder =
           mCameraDevice.createCaptureRequest(CameraDevice.TEMPLATE_STILL_CAPTURE);
     captureBuilder.addTarget(mImageReader.getSurface());

     // Use the same AE and AF modes as the preview.
     captureBuilder.set(CaptureRequest.CONTROL_AF_MODE,
           CaptureRequest.CONTROL_AF_MODE_CONTINUOUS_PICTURE);
     setCurrentFlash(captureBuilder);

     // Orientation
     int rotation = activity.getWindowManager()
           .getDefaultDisplay()
           .getRotation();
     captureBuilder.set(CaptureRequest.JPEG_ORIENTATION, getOrientation(rotation));

     CameraCaptureSession.CaptureCallback captureCallback =
           new CameraCaptureSession.CaptureCallback() {

              @Override
              public void onCaptureCompleted(@NonNull CameraCaptureSession session,
                    @NonNull CaptureRequest request, @NonNull TotalCaptureResult result) {
                 super.onCaptureCompleted(session, request, result);
                 Toast.makeText(context, "image captured", Toast.LENGTH_SHORT)
                       .show();
                 unlockFocus();
              }
           };

              mCaptureSession.stopRepeating();
     mCaptureSession.capture(captureBuilder.build(), captureCallback, null);
  } catch (CameraAccessException e) {
     Log.e(this.getClass()
           .getSimpleName(), e.getMessage(), e);
  }

这是setCurrentFlash方法:

   private void setCurrentFlash(CaptureRequest.Builder requestBuilder) {
  if (mFlashSupported) {
     switch (flashMode.name()) {
        case FLASH_AUTO:
           requestBuilder.set(CaptureRequest.CONTROL_AE_MODE,
                 CaptureRequest.CONTROL_AE_MODE_ON_AUTO_FLASH);
           break;
        case FLASH_ON:
           requestBuilder.set(CaptureRequest.CONTROL_AE_MODE,
                 CaptureRequest.CONTROL_AE_MODE_ON_ALWAYS_FLASH);
           break;
        case FLASH_OFF:
           requestBuilder.set(CaptureRequest.FLASH_MODE, CaptureRequest.FLASH_MODE_OFF);
           break;
        default:
           requestBuilder.set(CaptureRequest.CONTROL_AE_MODE,
                 CaptureRequest.CONTROL_AE_MODE_ON_AUTO_FLASH);
           break;
     }
  }

为什么构建器在捕获之前没有正确设置闪存的任何想法?

***** 编辑 *****

解决问题时,在调用runPrecaptureSequence()时将flash设置为previewRequestBuilder,如Eddy Talvala建议

   private void runPrecaptureSequence() {
  try {
     // This is how to tell the camera to trigger.
     setCurrentFlash(previewRequestBuilder);
     previewRequestBuilder.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER,
           CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER_START);
     // Tell #mCaptureCallback to wait for the precapture sequence to be set.
     state = STATE_WAITING_PRECAPTURE;
     captureSession.capture(previewRequestBuilder.build(), mCaptureCallback, backgroundHandler);
  } catch (CameraAccessException e) {
     e.printStackTrace();
  }

1 个答案:

答案 0 :(得分:5)

您也希望在预览请求中更新闪光模式;一般情况下,当您触发预捕获序列(使用AE_PRECAPTURE_TRIGGER)时,相机设备想知道您所需的闪光模式,以便它知道是否应该打开预捕获闪光,它需要确定最终的闪光功率。

通常的事件顺序是:

  1. 将预览闪光模式设为所需模式
  2. 等待用户按下快门按钮
  3. 使用预捕获触发器设置发出单个预览请求(但是重复保持预览请求)。
  4. 等待AE_STATE_PRECAPTURE在捕获结果中停止成为AE状态
  5. 发出最终捕获请求(保持相同的闪存模式)
  6. 在ImageReader中获取最终JPEG
  7. (这忽略了确保焦点是好的,通常在启动预捕获序列之前/之后完成)

相关问题