cell histogram

This commit is contained in:
EugeneTes
2026-04-07 14:52:20 +02:00
parent 371436d0c3
commit 931de47164
17 changed files with 917 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
using Avalonia.Media.Imaging;
namespace LindtLeerformPlugin.ViewModels;
public class CellHistogramViewModel
{
public string Title { get; set; } = "Cell Histogram";
public Bitmap? ReferenceImage { get; set; }
public Bitmap? CellImage { get; set; }
public string DistanceText { get; set; } = string.Empty;
}