profile influences configuration
This commit is contained in:
EugeneTes
2026-05-15 11:54:36 +02:00
parent 2be13501fa
commit 8704d0b5ac
42 changed files with 2467 additions and 1023 deletions

View File

@@ -3,7 +3,13 @@ namespace LindtLeerformPlugin.Models;
public class CellResult
{
public int Index { get; set; }
/// <summary>True when no chocolate blobs were detected inside this cell (the form is empty as expected).</summary>
public bool IsGood { get; set; }
/// <summary>Largest (histogram bin value spline at that bin) across all bins. Negative if every bin is below the spline.</summary>
public double MaxExceedance { get; set; }
/// <summary>Number of contours inside the cell that passed the area filter.</summary>
public int BlobCount { get; set; }
/// <summary>Total pixel area classified as chocolate inside this cell (sum of accepted contour areas).</summary>
public int DetectedArea { get; set; }
}