[go: nahoru, domu]

blob: c9f9b7283e1bf4e056101b32bf4b0c296585c843 [file] [log] [blame]
/*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.camera.camera2.internal;
import static androidx.camera.core.impl.ImageOutputConfig.DEFAULT_ASPECT_RATIO_LANDSCAPE;
import static androidx.camera.core.impl.ImageOutputConfig.DEFAULT_ASPECT_RATIO_PORTRAIT;
import android.content.Context;
import android.hardware.camera2.CameraDevice;
import android.view.WindowManager;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.camera.core.CameraInfo;
import androidx.camera.core.ImageAnalysis;
import androidx.camera.core.impl.CaptureConfig;
import androidx.camera.core.impl.ConfigProvider;
import androidx.camera.core.impl.ImageAnalysisConfig;
import androidx.camera.core.impl.SessionConfig;
/**
* Provides defaults for {@link ImageAnalysisConfig} in the Camera2 implementation.
*/
public final class ImageAnalysisConfigProvider implements ConfigProvider<ImageAnalysisConfig> {
private static final String TAG = "ImageAnalysisProvider";
private final WindowManager mWindowManager;
public ImageAnalysisConfigProvider(@NonNull Context context) {
mWindowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
}
@Override
@NonNull
@SuppressWarnings("deprecation") /* defaultDisplay */
public ImageAnalysisConfig getConfig(@Nullable CameraInfo cameraInfo) {
ImageAnalysis.Builder builder = ImageAnalysis.Builder.fromConfig(
ImageAnalysis.DEFAULT_CONFIG.getConfig(cameraInfo));
// SessionConfig containing all intrinsic properties needed for ImageAnalysis
SessionConfig.Builder sessionBuilder = new SessionConfig.Builder();
// TODO(b/114762170): Must set to preview here until we allow for multiple template types
sessionBuilder.setTemplateType(CameraDevice.TEMPLATE_PREVIEW);
// Add options to UseCaseConfig
builder.setDefaultSessionConfig(sessionBuilder.build());
builder.setSessionOptionUnpacker(Camera2SessionOptionUnpacker.INSTANCE);
CaptureConfig.Builder captureBuilder = new CaptureConfig.Builder();
captureBuilder.setTemplateType(CameraDevice.TEMPLATE_PREVIEW);
builder.setDefaultCaptureConfig(captureBuilder.build());
builder.setCaptureOptionUnpacker(Camera2CaptureOptionUnpacker.INSTANCE);
int targetRotation = mWindowManager.getDefaultDisplay().getRotation();
builder.setTargetRotation(targetRotation);
// Add options that requires camera info to UseCaseConfig
if (cameraInfo != null) {
int rotationDegrees = cameraInfo.getSensorRotationDegrees(targetRotation);
boolean isRotateNeeded = (rotationDegrees == 90 || rotationDegrees == 270);
builder.setTargetAspectRatioCustom(isRotateNeeded ? DEFAULT_ASPECT_RATIO_PORTRAIT
: DEFAULT_ASPECT_RATIO_LANDSCAPE);
}
return builder.getUseCaseConfig();
}
}