inital commit

This commit is contained in:
2021-04-18 19:37:00 +02:00
commit 51b2c91d24
44 changed files with 2782 additions and 0 deletions

36
README.md Normal file
View File

@@ -0,0 +1,36 @@
Android CameraLive
==================
This app is using the Camera2 API to display the camera preview with a JPEG, DEPTH
or RAW frame.
Introduction
------------
The [Camera2 API][1] allows users to capture RAW images, i.e. unprocessed pixel data
directly from the camera sensor that has not yet been converted into a format and
colorspace typically used for displaying and storing images viewed by humans.
This app displays a live camera preview in a TextureView and is based on the
[Camera2Basic][2] example.
[1]: https://developer.android.com/reference/android/hardware/camera2/package-summary.html
[2]: https://github.com/android/camera-samples/tree/main/Camera2Basic
Pre-requisites
--------------
- Android SDK 29+
- Android Studio 3.5+
Screenshots
-----------
<img src="screenshots/main.png" height="400" alt="Screenshot"/>
Getting Started
---------------
This sample uses the Gradle build system. To build this project, use the
"gradlew build" command or use "Import Project" in Android Studio.