This commit is contained in:
2026-01-23 09:57:52 +01:00
commit 831badd188
136 changed files with 7705 additions and 0 deletions

View File

@ -0,0 +1,21 @@
namespace PdfMarker.Models;
public class QuotaCandidate
{
public QuotaType Type { get; set; }
public string RawText { get; set; } = string.Empty;
// Bounding box normalizzato (01)
public double X { get; set; }
public double Y { get; set; }
public double Width { get; set; }
public double Height { get; set; }
// Orientamento stimato
public bool IsHorizontal { get; set; }
public bool IsVertical { get; set; }
// Confidenza grezza (01)
public double Confidence { get; set; }
}