mirror of
https://gitee.com/dashuaibran/jyker
synced 2025-09-27 03:09:12 +08:00
22 lines
457 B
C#
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;
|
|
}
|
|
}
|
|
}
|