ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Android平台使用Camera2(5.0+)替代过时的Camera

2021-03-12 17:57:20  阅读:472  来源: 互联网

标签:5.0 camera Camera2 hardware Camera android API


转自:https://forums.developer.amazon.com/articles/2707/using-camera2-to-replace-deprecated-camera-api.html

From Android 5.0(API Level 21) the new Camera2 API(android.hardware.Camera2) is introduced which now gives full manual control over Android device cameras. With previous Camera API(android.hardware.Camera), manual controls for the camera were only accessible by making changes to OS and existing APIs which wasn't friendly. The old Camera API (android.hardware.Camera) is now deprecated on Android 5.0 and recommended to use Camera2 API for future apps.

Pre-L Camera API - Limited access to streaming image data Limited information about camera state No manual capture control

Camera2 API - Supports 30fps full resolution with burst mode Supports change on manual camera settings between frame capture Supports RAW image capture Supports Zero Shutter Lag & Movie Snapshot Supports setting other manual camera device controls including level of Noise Cancelling

Resolution

Basic usage of camera is divided with 5 main parts(CameraManager,CameraDevice,CameraCaptureSession,CaptureRequest,CaptureResult)

CameraManager - Provides interfaces for iterating, listing and connecting to CameraDevices http://developer.android.com/reference/android/hardware/camera2/CameraManager.html

CameraDevice - Representation of a single camera connected to an Android device http://developer.android.com/reference/android/hardware/camera2/CameraDevice.html

CameraCaptureSession - Provides set of target output surfaces(TextureView,MediaRecorder,MediaCodec,ImageReader,RenderScriptAllocation) http://developer.android.com/reference/android/hardware/camera2/CameraCaptureSession.html

CaptureRequest - Settings and outputs needed to capture a single image from the camera device Create request builder by predefined templates(TEMPLATE_PREVIEW, TEMPLATE_RECORD, TEMPLATE_STILL_CAPTURE, TEMPLATE_VIDEO_SNAPSHOT, TEMPLATE_MANUAL) This requests are given to capture or setRepeatingRequest to capture images from the camera http://developer.android.com/reference/android/hardware/camera2/CaptureRequest.html

CaptureResult - Results of a single image capture from the image sensorhttp://developer.android.com/reference/android/hardware/camera2/CaptureResult.html

For specifics, you should go through the Camera2 Package Summary page. http://developer.android.com/reference/android/hardware/camera2/package-summary.html

Also there is a great introductory video by Google Developer Advocate on YouTube that explains the changes on Camera2 API: DevBytes: Android L Developer Preview - Camera2 API.

https://www.youtube.com/watch?v=Xtp3tH27OFs

You will need to remember that all features on Camera2 API are not always available on Android device cameras. It all depends on the camera device. In order to check that, use CameraCharacteristics to retrieve camera device feature supported information. characteristics.get(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL);

The results will be returned within 3 flavors of camera functionality with the order of FULL > LIMITED > LEGACY:

INFO_SUPPORTED_HARDWARE_LEVEL_FULL - Full hardware level support which allows high resolution capture with support to full manual control. When this is returned, image capture with burst mode and new features will be available.

https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics.html#INFO_SUPPORTED_HARDWARE_LEVEL

INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED - A LIMITED device may have some or none of the FULL characteristics. Some features are not part of any particular hardware level or capability and must be queried separately.

https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics.html#INFO_SUPPORTED_HARDWARE_LEVEL

INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY - Cameras on all devices support at least this level. This is the same level as the old Camera API which got deprecated.

https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics.html#INFO_SUPPORTED_HARDWARE_LEVEL

Although it is recommended to use Camera2 API for future app development, it is only available for usage from Lollipop(API Level 21). It is unlikely that the Camera2 API will backport to the earlier versions of Android, so you will need to keep using the Camera API(android.hardware.Camera) until minSdkVersion rises to 21 or higher. You can make the app distinguish which camera API to use by the following code.

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
     // your code using Camera API here - is between 1-20
} else if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
     // your code using Camera2 API here - is api 21 or higher
}

Keywords: Camera, Deprecated methods, Camera2

标签:5.0,camera,Camera2,hardware,Camera,android,API
来源: https://blog.csdn.net/renhui1112/article/details/114701972

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有