namespace Vinno.AI.AutoBLineDiagnosisSDK.Models { /// /// 单幅图像的B线计算结果 /// public class AIBlineScoringResults { /// /// 单幅图像中B线的评分 /// public int BlineScore { get; set; } /// /// 单幅图像中B线计算的目标 /// public AIBLineScoringInfo[] BlineScoringInfo { get; set; } /// /// B线模型分割目标 /// public AIBlineRecognizedObjectInfo[] RecognizedObjects { get; set; } /// /// 感兴趣的区域 /// public AIRegionOfInterestInfo RegionOfInterestInfo { get; set; } public AIBlineScoringResults(int blineScore, AIBLineScoringInfo[] blineScoringInfo, AIBlineRecognizedObjectInfo[] recognizedObjects, AIRegionOfInterestInfo regionOfInterestInfo) { BlineScore = blineScore; BlineScoringInfo = blineScoringInfo; RecognizedObjects = recognizedObjects; RegionOfInterestInfo = regionOfInterestInfo; } } }