using System; using System.Collections.Generic; namespace TetraPackOCR { /// /// 点 /// 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; } } }