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