1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace UsHepatoRenalRatioDetectLib
- {
- /// <summary>
- /// 系统输出的脏器名称
- /// </summary>
- public enum EnumOrgans
- {
- /// <summary>
- /// 空(用于AIDiagSystem给外界的输出)
- /// 如果系统只能判别输入图像中有没有肝脏和胆囊,那么当输入图像中既没有肝脏也没有胆囊时,系统无法分辨该图上到底有什么,所以返回EnumOrgan=Null
- /// </summary>
- Null = 0,
- /// <summary>
- /// 没有指定(已弃用)
- /// </summary>
- NotSpecified = 1,
- /// <summary>
- /// 乳腺
- /// </summary>
- Breast = 2,
- /// <summary>
- /// 腹部(上腹部)
- /// 检测到扫查部位是腹部,但是没有检测到任何一个腹部有效的器官
- /// </summary>
- Abdomen = 3,
- /// <summary>
- /// 肝脏
- /// </summary>
- Liver = 4,
- /// <summary>
- /// 胆囊
- /// </summary>
- Cholecyst = 5,
- /// <summary>
- /// 肾脏
- /// </summary>
- Kidney = 6,
- /// <summary>
- /// 脾脏
- /// </summary>
- Spleen = 7,
- /// <summary>
- /// 颈动脉
- /// </summary>
- CarotidArtery = 8,
- /// <summary>
- /// 甲状腺
- /// </summary>
- Thyroid = 9,
- /// <summary>
- /// 颈部
- /// 检测到扫查部位是颈部,但是没有检测到任何一个颈部有效的器官
- /// </summary>
- Neck = 10,
- }
- }
|