namespace OrpaonVision.SiteApp.Runtime.Contracts;
///
/// YOLO检测结果。
///
public sealed class YoloDetectionResult
{
///
/// 类别ID。
///
public int ClassId { get; set; }
///
/// 类别名称。
///
public string ClassName { get; set; } = string.Empty;
///
/// 置信度。
///
public float Confidence { get; set; }
///
/// 边界框X坐标。
///
public float X { get; set; }
///
/// 边界框Y坐标。
///
public float Y { get; set; }
///
/// 边界框宽度。
///
public float Width { get; set; }
///
/// 边界框高度。
///
public float Height { get; set; }
///
/// 边界框中心X坐标。
///
public float CenterX => X + Width / 2;
///
/// 边界框中心Y坐标。
///
public float CenterY => Y + Height / 2;
///
/// 边界框面积。
///
public float Area => Width * Height;
}