Initial
This commit is contained in:
14
PdfMarker/Models/FeatureCandidate.cs
Normal file
14
PdfMarker/Models/FeatureCandidate.cs
Normal file
@ -0,0 +1,14 @@
|
||||
namespace PdfMarker.Models;
|
||||
|
||||
public class FeatureCandidate
|
||||
{
|
||||
public QuotaType Type { get; set; }
|
||||
|
||||
public List<QuotaCandidate> Quotes { get; set; } = new();
|
||||
|
||||
// area aggregata (normalizzata)
|
||||
public double CenterX { get; set; }
|
||||
public double CenterY { get; set; }
|
||||
|
||||
public double Confidence { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user