OrganSegUpdateEventArgs.cs 569 B

12345678910111213141516171819202122
  1. using AI.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace UsHepatoRenalRatioDetectLib
  8. {
  9. public class OrganSegUpdateEventArgs : EventArgs
  10. {
  11. public EnumOrgans[] OrganType { get; set; }
  12. public Dictionary<EnumOrgans, Point2D[]> Countours { get; set; }
  13. public OrganSegUpdateEventArgs(EnumOrgans[] organType, Dictionary<EnumOrgans, Point2D[]> countours)
  14. {
  15. OrganType = organType;
  16. Countours = countours;
  17. }
  18. }
  19. }