histogram implemented

This commit is contained in:
EugeneTes
2026-04-08 13:10:34 +02:00
parent 931de47164
commit 2be13501fa
11 changed files with 805 additions and 125 deletions

View File

@@ -5,7 +5,7 @@ public class LeerformRecipe
public string RecipeName { get; set; } = string.Empty;
public CellPattern Pattern { get; set; } = new();
public int[] HistogramBins { get; set; } = [5, 5, 5];
public float[] ReferenceHistogram { get; set; } = [];
public double Tolerance { get; set; } = 0.30;
public float[] AverageSpline { get; set; } = [];
public Dictionary<int, float[]> CellSplines { get; set; } = new();
public string ThumbnailBase64 { get; set; } = string.Empty;
}