namespace YOLODetectProcessLib { /// /// 2维坐标点 /// public struct Point2D { /// /// X坐标 /// public int X { get; set; } /// /// Y坐标 /// public int Y { get; set; } /// /// 初始化 /// /// /// public Point2D(int x, int y) { X = x; Y = y; } } }