mixedreality/com.microsoft.mixedreality..../Core/Definitions/Utilities/RecognitionConfidenceLevel.cs

17 lines
351 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.Utilities
{
/// <summary>
/// Indicates the confidence level of a recognized event.
/// </summary>
public enum RecognitionConfidenceLevel
{
High = 0,
Medium,
Low,
Unknown
}
}