12345678910111213141516171819202122 |
- using AI.Common;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace UsHepatoRenalRatioDetectLib
- {
- public class OrganSegUpdateEventArgs : EventArgs
- {
- public EnumOrgans[] OrganType { get; set; }
- public Dictionary<EnumOrgans, Point2D[]> Countours { get; set; }
- public OrganSegUpdateEventArgs(EnumOrgans[] organType, Dictionary<EnumOrgans, Point2D[]> countours)
- {
- OrganType = organType;
- Countours = countours;
- }
- }
- }
|