forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
475a62d
commit 9ae8145
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
wrappers/csharp/Intel.RealSense/Types/Enums/L500VisualPreset.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// License: Apache 2.0. See LICENSE file in root directory. | ||
// Copyright(c) 2017 Intel Corporation. All Rights Reserved. | ||
|
||
namespace Intel.RealSense | ||
{ | ||
/// <summary> | ||
/// For L500 devices: provides optimized settings (presets) for specific types of usage. | ||
/// </summary> | ||
public enum L500VisualPreset | ||
{ | ||
Custom = 0, | ||
Default = 1, | ||
NoAmbient = 2, | ||
LowAmbient = 3, | ||
MaxRange = 4, | ||
ShortRange = 5, | ||
} | ||
} |