Files
TetraParkOCR/利乐包装OCR/HPoint.cs
2025-10-27 09:30:49 +08:00

25 lines
380 B
C#

using System;
using System.Collections.Generic;
namespace TetraPackOCR
{
/// <summary>
/// 点
/// </summary>
class Point
{
public int x;
public int y;
public string txt;
public Point(int x, int y,string txt)
{
this.x = x;
this.y = y;
this.txt = txt;
}
}
}