Initial
This commit is contained in:
21
PdfMarker/Models/QuotaCandidate.cs
Normal file
21
PdfMarker/Models/QuotaCandidate.cs
Normal 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 (0–1)
|
||||
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 (0–1)
|
||||
public double Confidence { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user