Organ.cs 579 B

123456789101112131415161718192021222324
  1. using AI.Common;
  2. namespace AIDiagnosisDemo.Infrastucture
  3. {
  4. public class Organ
  5. {
  6. public string OrganName { get; set; }
  7. public MyRect BoundBox { get; set; }
  8. public MyPoint[] Contour { get; set; }
  9. public Point2D[][] Contours { get; set; }
  10. public System.Windows.Media.Brush Color => System.Windows.Media.Brushes.Green;
  11. public Organ(string organName, MyRect boundBox, Point2D[][] contours)
  12. {
  13. OrganName = organName;
  14. BoundBox = boundBox;
  15. Contours = contours;
  16. }
  17. }
  18. }