using System; using System.Collections.Generic; using System.Text; namespace YOLODetectProcessLib { /// /// 检测结果 /// public struct DetectedBreastLesionResult:IDetectedObject { public int Label { get; set; } public float Confidence { get; set; } public Rect BoundingBox { get; set; } public DetectedBreastLesionResult(int label, float confidence, Rect boundBox) { Label = label; Confidence = confidence; BoundingBox = boundBox; } } }