jyker/HMIcode/SmallProject/Yolov5Net.Scorer/YoloLabel.cs
2025-08-21 20:47:08 +08:00

22 lines
457 B
C#

using System.Drawing;
namespace Yolov5Net.Scorer
{
/// <summary>
/// Label of detected object.
/// </summary>
public class YoloLabel
{
public int Id { get; set; }
public string Name { get; set; }
public string Title { get; set; }
public YoloLabelKind Kind { get; set; }
public Color Color { get; set; }
public YoloLabel()
{
Color = Color.Yellow;
}
}
}