page_type | languages | products | urlFragment | extendedZipContent | description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sample |
|
|
CameraAdvancedCapture |
|
An end-to-end sample camera app supporting orientation, HDR, low light, and other features. |
Provides an end-to-end sample to show how to write a camera app using the Windows.Media.Capture API in conjunction with orientation sensors to cover the functions that most camera apps will require. Uses the Windows.Media.Core.SceneAnalysisEffect API to get information about the preview scene and give a recommendation on how beneficial an HDR capture would be. Also shows a simple way to use the Windows.Media.Capture.AdvancedCapture API, which enables functionality such as High Dynamic Range (HDR) and Low Light captures, included in Windows. This sample is based on the Basic camera app sample.
Note: This sample is part of a large collection of UWP feature samples. You can download this sample as a standalone ZIP file from docs.microsoft.com, or you can download the entire collection as a single ZIP file, but be sure to unzip everything to access shared dependencies. For more info on working with the ZIP file, the samples collection, and GitHub, see Get the UWP samples from GitHub. For more samples, see the Samples portal on the Windows Dev Center.
Specifically, this sample will cover how to:
- Manage the MediaCapture object throughout the lifecycle of the app and through navigation events.
- Acquire a camera located on a specific side of the device. In this case, the sample attempts to get the rear camera.
- Start and stop the preview to a UI element, including mirroring for front-facing cameras.
- Take a regular picture to a file, taking into account the orientation of the device.
- Manage the Scene Analysis effect, including creation, activation/deactivation of the HighDynamicRangeAnalyzer, registering for the SceneAnalyzed event, and cleanup. The effect is used throughout the lifetime of the app, and the analysis result is shown to the user.
- Configure the AdvancedPhotoControl to capture images, create an instance of the AdvancedCapture, and register for the AllAllPhotosCaptured event, which signals that the camera is ready to capture again, and for the OptionalReferencePhotoCaptured, which will be raised only on devices that support delivering a reference image alongside the processed image, and carries the reference image in the payload.
- Take an Advanced Capture picture to a file, taking into account the orientation of the device. This can be an HDR, a Low Light, or a standard picture, depending on the capabilities of the device.
- Handle rotation events for both, the device moving in space and the page orientation changing on the screen. Also apply any necessary corrections to the preview stream rotation.
- Handle MediaCapture Failed event to clean up the MediaCapture instance when an error occurs.
This sample also implements a custom UI to better simulate the experience that a camera application would provide, so any messages intended for the developer are printed to the debug console.
Capture photos and video with MediaCapture
Media capture using capture device
High Dynamic Range photo capture
Using the Scene Analysis effect
Windows.Media.Capture.MediaCapture namespace
Windows.Media.Capture.MediaCaptureInitializationSettings constructor
Windows.Media.Capture.MediaCaptureInitilizationSettings.VideoDeviceId property
Windows.Devices.Enumeration namespace
Windows.Devices.Enumeration.DeviceInformation class
Windows.Devices.Sensors.SimpleOrientationSensor class
Windows.Graphics.Display.DisplayInformation class
Windows.Phone.UI.Input.HardwareButtons.CameraPressed event
Windows.Graphics.Imaging.BitmapDecoder class
Windows.Graphics.Imaging.BitmapEncoder class
- CameraStarterKit
- CameraAdvancedCapture sample for JavaScript (archived)
- Windows 10
- Camera
- If you download the samples ZIP, be sure to unzip the entire archive, not just the folder with the sample you want to build.
- Start Microsoft Visual Studio and select File > Open > Project/Solution.
- Starting in the folder where you unzipped the samples, go to the Samples subfolder, then the subfolder for this specific sample, then the subfolder for your preferred language (C++, C#, or JavaScript). Double-click the Visual Studio Solution (.sln) file.
- Press Ctrl+Shift+B, or select Build > Build Solution.
The next steps depend on whether you just want to deploy the sample or you want to both deploy and run it.
Deploying the sample:
- Select Build > Deploy Solution.
Deploying and running the sample:
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or select Debug > Start Without Debugging.