INNER CODE UNIT · C#
LabelerData
Unity-Technologies/com.unity.perception · com.unity.perception/Runtime/PerceptionAnalyticsStructs.cs:54
class LabelerData
{
public string name;
public bool enabled = false;
public int perceptionCameraIndex = -1;
public int labelConfigCount = -1;
public string objectFilter = "";
public int animationPoseCount = -1;
public static LabelerData FromLabeler(CameraLabeler labeler)
{
if (labeler == null || labeler.enabled == false)
return null;
var labelerType = labeler.GetType();
var labelerName = labelerType.Name;
if (!PerceptionAnalytics.labelerAllowList.Contains(labelerName))