using Vinno.AI.CarotidClassificationSDK.Enums;
namespace Vinno.AI.CarotidClassificationSDK.Models
{
public class AICarotidArterySectionClassificationResults
{
///
/// 颈动脉标准面的标准程度
///
public float Score { get; }
///
/// 颈动脉标准面的类型
///
public AIEnumCarotidArterySectionType SectionType { get; }
///
/// 颈部脏器分割模型识别到的目标
///
public AINeckOrganDetectorRecognizedObjectInfo[] RecognizedObjects { get; }
public AICarotidArterySectionClassificationResults(float score, AIEnumCarotidArterySectionType sectionType, AINeckOrganDetectorRecognizedObjectInfo[] recognizedObjects)
{
Score = score;
SectionType = sectionType;
RecognizedObjects = recognizedObjects;
}
}
}