25 lines
380 B
C#
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;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|