Files
TetraParkOCR/TetraPackOCR/OCRTextResult.cs
2025-12-23 10:19:58 +08:00

17 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TetraPackOCR
{
internal class OCRTextResult
{
public bool match;
public string text;
public List<PointF[]> points = new List<PointF[]>();
}
}