浏览代码
Labeler docs (#30)
Labeler docs (#30)
* Initial docs for new labelers. Updated changelog. * Fixing IdLabelConfig import issues * Adding support for rendering to a user-supplied render texture for semantic segmentation./main
GitHub
4 年前
当前提交
55a8c7fe
共有 19 个文件被更改,包括 1533 次插入 和 359 次删除
-
4TestProjects/PerceptionURP/Assets/IdLabelConfig.asset
-
5TestProjects/PerceptionURP/Assets/Scenes/SampleScene.unity
-
7com.unity.perception/CHANGELOG.md
-
18com.unity.perception/Documentation~/GroundTruth-Labeling.md
-
53com.unity.perception/Documentation~/PerceptionCamera.md
-
368com.unity.perception/Documentation~/images/PerceptionCamera.png
-
2com.unity.perception/Documentation~/index.md
-
9com.unity.perception/Editor/GroundTruth/PerceptionCameraEditor.cs
-
43com.unity.perception/Runtime/GroundTruth/Labelers/SemanticSegmentationLabeler.cs
-
18com.unity.perception/Runtime/GroundTruth/Labeling/IdLabelConfig.cs
-
4com.unity.perception/Runtime/GroundTruth/Labeling/SemanticSegmentationLabelConfig.cs
-
2com.unity.perception/Runtime/GroundTruth/Resources/SemanticSegmentation.shader
-
7com.unity.perception/Runtime/GroundTruth/SemanticSegmentationCrossPipelinePass.cs
-
6com.unity.perception/Tests/Runtime/GroundTruthTests/GroundTruthTestBase.cs
-
87com.unity.perception/Tests/Runtime/GroundTruthTests/SegmentationGroundTruthTests.cs
-
1001com.unity.perception/Documentation~/images/bounding_boxes.png
-
235com.unity.perception/Documentation~/images/semantic_segmentation.png
-
20com.unity.perception/Runtime/GroundTruth/Labeling/IdLabelEntry.cs
-
3com.unity.perception/Runtime/GroundTruth/Labeling/IdLabelEntry.cs.meta
1001
com.unity.perception/Documentation~/images/bounding_boxes.png
文件差异内容过多而无法显示
查看文件
文件差异内容过多而无法显示
查看文件
|
|||
using System; |
|||
|
|||
namespace UnityEngine.Perception.GroundTruth { |
|||
/// <summary>
|
|||
/// An entry for <see cref="IdLabelConfig"/> mapping a label to an integer id.
|
|||
/// </summary>
|
|||
[Serializable] |
|||
public struct IdLabelEntry : ILabelEntry |
|||
{ |
|||
string ILabelEntry.label => this.label; |
|||
/// <summary>
|
|||
/// The label string to associate with the id.
|
|||
/// </summary>
|
|||
public string label; |
|||
/// <summary>
|
|||
/// The id to associate with the label.
|
|||
/// </summary>
|
|||
public int id; |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: ecabcfb188f0406bb1ac9b222c8bd915 |
|||
timeCreated: 1593702144 |
撰写
预览
正在加载...
取消
保存
Reference in new issue