添加项目文件。
This commit is contained in:
24
利乐包装OCR/HPoint.cs
Normal file
24
利乐包装OCR/HPoint.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user