添加项目文件。

This commit is contained in:
2025-10-27 09:30:49 +08:00
parent 0cabb8b412
commit 43b04133a1
43 changed files with 9685 additions and 0 deletions

24
利乐包装OCR/HPoint.cs Normal file
View 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;
}
}
}