• Home
Name Date Size #Lines LOC

..--

.google/03-May-2024-1812

Application/03-May-2024-2,5831,391

gradle/wrapper/03-May-2024-66

screenshots/03-May-2024-

CONTRIB.mdD03-May-20241.6 KiB3627

CONTRIBUTING.mdD03-May-20241.5 KiB3627

LICENSED03-May-202411.1 KiB204170

README.mdD03-May-20242.7 KiB7553

build.gradleD03-May-202410 110

gradlewD03-May-20245 KiB165122

gradlew.batD03-May-20242.3 KiB9166

packaging.yamlD03-May-2024471 1610

settings.gradleD03-May-202422 21

README.md

1
2Android Camera2Raw Sample
3===================================
4
5This sample demonstrates using the Camera2 API to capture a JPEG and RAW sensor frame.
6Check the source code to see a typical example of how to display the camera preview;
7run auto-focus, auto-exposure metering, and auto-white-balance; capture a JPEG and
8RAW image for the same sensor frame; and save these into MediaStore for use in other
9applications.
10
11Introduction
12------------
13
14The [Camera2 API][1] allows users to capture RAW images, i.e. unprocessed pixel data
15directly from the camera sensor that has not yet been converted into a format and
16colorspace typically used for displaying and storing images viewed by humans.  The
17[DngCreator][2] class is provided as part of the Camera2 API as a utility for saving
18RAW images as DNG files.
19
20This sample displays a live camera preview in a TextureView, and saves JPEG and DNG
21file for each image captured.
22
23[1]: https://developer.android.com/reference/android/hardware/camera2/package-summary.html
24[2]: https://developer.android.com/reference/android/hardware/camera2/DngCreator.html
25
26Pre-requisites
27--------------
28
29- Android SDK 27
30- Android Build Tools v27.0.2
31- Android Support Repository
32
33Screenshots
34-------------
35
36<img src="screenshots/main.png" height="400" alt="Screenshot"/>
37
38Getting Started
39---------------
40
41This sample uses the Gradle build system. To build this project, use the
42"gradlew build" command or use "Import Project" in Android Studio.
43
44Support
45-------
46
47- Google+ Community: https://plus.google.com/communities/105153134372062985968
48- Stack Overflow: http://stackoverflow.com/questions/tagged/android
49
50If you've found an error in this sample, please file an issue:
51https://github.com/googlesamples/android-Camera2Raw
52
53Patches are encouraged, and may be submitted by forking this project and
54submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
55
56License
57-------
58
59Copyright 2017 The Android Open Source Project, Inc.
60
61Licensed to the Apache Software Foundation (ASF) under one or more contributor
62license agreements.  See the NOTICE file distributed with this work for
63additional information regarding copyright ownership.  The ASF licenses this
64file to you under the Apache License, Version 2.0 (the "License"); you may not
65use this file except in compliance with the License.  You may obtain a copy of
66the License at
67
68http://www.apache.org/licenses/LICENSE-2.0
69
70Unless required by applicable law or agreed to in writing, software
71distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
72WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
73License for the specific language governing permissions and limitations under
74the License.
75