浏览代码
Merge pull request #9 from Unity-Technologies/1-based-labels
Merge pull request #9 from Unity-Technologies/1-based-labels
Custom label ids & LabelingConfiguration cleanup/main
GitHub
5 年前
当前提交
d052596b
共有 17 个文件被更改,包括 266 次插入 和 105 次删除
-
13TestProjects/PerceptionHDRP/Assets/LabelingConfiguration.asset
-
2TestProjects/PerceptionHDRP/Packages/manifest.json
-
4TestProjects/PerceptionHDRP/ProjectSettings/ProjectVersion.txt
-
13TestProjects/PerceptionURP/Assets/ExampleLabelingConfiguration.asset
-
2TestProjects/PerceptionURP/Packages/manifest.json
-
4TestProjects/PerceptionURP/ProjectSettings/ProjectVersion.txt
-
104com.unity.perception/Editor/GroundTruth/LabelingConfigurationEditor.cs
-
62com.unity.perception/Runtime/GroundTruth/Labeling/LabelingConfiguration.cs
-
36com.unity.perception/Runtime/GroundTruth/ObjectCountPass.cs
-
20com.unity.perception/Runtime/GroundTruth/PerceptionCamera.cs
-
47com.unity.perception/Runtime/GroundTruth/RenderedObjectInfoGenerator.cs
-
6com.unity.perception/Runtime/GroundTruth/SemanticSegmentationCrossPipelinePass.cs
-
20com.unity.perception/Tests/Runtime/GroundTruthTests/BoundingBox2DTests.cs
-
9com.unity.perception/Tests/Runtime/GroundTruthTests/ObjectCountTests.cs
-
5com.unity.perception/Tests/Runtime/GroundTruthTests/PerceptionCameraIntegrationTests.cs
-
21com.unity.perception/Runtime/GroundTruth/Labeling/StartingLabelId.cs
-
3com.unity.perception/Runtime/GroundTruth/Labeling/StartingLabelId.cs.meta
|
|||
m_EditorVersion: 2019.3.9f1 |
|||
m_EditorVersionWithRevision: 2019.3.9f1 (e6e740a1c473) |
|||
m_EditorVersion: 2019.3.13f1 |
|||
m_EditorVersionWithRevision: 2019.3.13f1 (d4ddf0d95db9) |
|
|||
m_EditorVersion: 2019.3.9f1 |
|||
m_EditorVersionWithRevision: 2019.3.9f1 (e6e740a1c473) |
|||
m_EditorVersion: 2019.3.13f1 |
|||
m_EditorVersionWithRevision: 2019.3.13f1 (d4ddf0d95db9) |
|
|||
using System; |
|||
|
|||
namespace UnityEngine.Perception.GroundTruth |
|||
{ |
|||
/// <summary>
|
|||
/// Selector for whether label ids should start at zero or one. <seealso cref="LabelingConfiguration.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 |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: 2f8f1d8ca6304fab94bf1c45c9ad0873 |
|||
timeCreated: 1589210485 |
撰写
预览
正在加载...
取消
保存
Reference in new issue