EnumOrgans.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace UsHepatoRenalRatioDetectLib
  7. {
  8. /// <summary>
  9. /// 系统输出的脏器名称
  10. /// </summary>
  11. public enum EnumOrgans
  12. {
  13. /// <summary>
  14. /// 空(用于AIDiagSystem给外界的输出)
  15. /// 如果系统只能判别输入图像中有没有肝脏和胆囊,那么当输入图像中既没有肝脏也没有胆囊时,系统无法分辨该图上到底有什么,所以返回EnumOrgan=Null
  16. /// </summary>
  17. Null = 0,
  18. /// <summary>
  19. /// 没有指定(已弃用)
  20. /// </summary>
  21. NotSpecified = 1,
  22. /// <summary>
  23. /// 乳腺
  24. /// </summary>
  25. Breast = 2,
  26. /// <summary>
  27. /// 腹部(上腹部)
  28. /// 检测到扫查部位是腹部,但是没有检测到任何一个腹部有效的器官
  29. /// </summary>
  30. Abdomen = 3,
  31. /// <summary>
  32. /// 肝脏
  33. /// </summary>
  34. Liver = 4,
  35. /// <summary>
  36. /// 胆囊
  37. /// </summary>
  38. Cholecyst = 5,
  39. /// <summary>
  40. /// 肾脏
  41. /// </summary>
  42. Kidney = 6,
  43. /// <summary>
  44. /// 脾脏
  45. /// </summary>
  46. Spleen = 7,
  47. /// <summary>
  48. /// 颈动脉
  49. /// </summary>
  50. CarotidArtery = 8,
  51. /// <summary>
  52. /// 甲状腺
  53. /// </summary>
  54. Thyroid = 9,
  55. /// <summary>
  56. /// 颈部
  57. /// 检测到扫查部位是颈部,但是没有检测到任何一个颈部有效的器官
  58. /// </summary>
  59. Neck = 10,
  60. }
  61. }