123456789101112131415161718192021222324 |
- using AI.Common;
- namespace AIDiagnosisDemo.Infrastucture
- {
- public class Organ
- {
- public string OrganName { get; set; }
- public MyRect BoundBox { get; set; }
- public MyPoint[] Contour { get; set; }
- public Point2D[][] Contours { get; set; }
- public System.Windows.Media.Brush Color => System.Windows.Media.Brushes.Green;
- public Organ(string organName, MyRect boundBox, Point2D[][] contours)
- {
- OrganName = organName;
- BoundBox = boundBox;
- Contours = contours;
- }
- }
- }
|