Files
HawkeyeVision/Plugins/LindtLeerformPlugin/Models/CellResult.cs
EugeneTes 8704d0b5ac 2.0.15
profile influences configuration
2026-05-15 11:54:36 +02:00

16 lines
552 B
C#

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>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; }
}