您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
525 B
21 行
525 B
using System;
|
|
|
|
namespace UnityEngine.Perception.GroundTruth
|
|
{
|
|
/// <summary>
|
|
/// Selector for whether label ids should start at zero or one. <seealso cref="IdLabelConfig.startingLabelId"/>.
|
|
/// </summary>
|
|
public enum StartingLabelId
|
|
{
|
|
/// <summary>
|
|
/// Start label id assignment at 0
|
|
/// </summary>
|
|
[InspectorName("0")]
|
|
Zero,
|
|
/// <summary>
|
|
/// Start label id assignment at 1
|
|
/// </summary>
|
|
[InspectorName("1")]
|
|
One
|
|
}
|
|
}
|