using Vinno.AI.CarotidClassificationSDK.Enums; using Vinno.AI.CommonSDK.Models; namespace Vinno.AI.CarotidClassificationSDK.Models { /// /// 颈动脉标准切面的相关信息 /// public class AINeckOrganDetectorRecognizedObjectInfo { /// /// 颈动脉标准切面的类型 /// public AIEnumNeckOrganDetectorRecognizedObjectType Type { get; } /// /// 识别正确的可能性 /// public float Confidence { get; } /// /// 该目标的轮廓 /// public AIPoint2D[] Contour { get; } public AINeckOrganDetectorRecognizedObjectInfo(AIEnumNeckOrganDetectorRecognizedObjectType type, float confidence, AIPoint2D[] contour) { Type = type; Confidence = confidence; Contour = contour; } } }