cell histogram
This commit is contained in:
13
Plugins/LindtLeerformPlugin/Models/CellPattern.cs
Normal file
13
Plugins/LindtLeerformPlugin/Models/CellPattern.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace LindtLeerformPlugin.Models;
|
||||
|
||||
public class CellPattern
|
||||
{
|
||||
public int Rows { get; set; } = 4;
|
||||
public int Cols { get; set; } = 5;
|
||||
public CellShape Shape { get; set; } = CellShape.Round;
|
||||
public int Padding { get; set; } = 5;
|
||||
public int RoiX { get; set; }
|
||||
public int RoiY { get; set; }
|
||||
public int RoiWidth { get; set; }
|
||||
public int RoiHeight { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user