Add TetraPackOCR

This commit is contained in:
2025-12-23 10:19:58 +08:00
parent 446281afaa
commit 2a6e5cb0d0
25 changed files with 9688 additions and 26 deletions

24
TetraPackOCR/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;
}
}
}