cell histogram
This commit is contained in:
11
Plugins/LindtLeerformPlugin/Models/LeerformRecipe.cs
Normal file
11
Plugins/LindtLeerformPlugin/Models/LeerformRecipe.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace LindtLeerformPlugin.Models;
|
||||
|
||||
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 string ThumbnailBase64 { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user