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,26 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:LindtLeerformPlugin.ViewModels"
x:Class="LindtLeerformPlugin.Views.CellHistogramWindow"
x:DataType="vm:CellHistogramViewModel"
Title="{Binding Title}"
Width="720" Height="600"
Background="#1A1A1A"
WindowStartupLocation="CenterOwner">
<ScrollViewer>
<StackPanel Spacing="12" Margin="16">
<TextBlock Text="Reference (learned)" FontWeight="Bold" Foreground="White" FontSize="14" />
<Border Background="#0A0A0A" Padding="4">
<Image Source="{Binding ReferenceImage}" Stretch="Uniform" Height="220" />
</Border>
<TextBlock Text="Selected cell" FontWeight="Bold" Foreground="White" FontSize="14" Margin="0,8,0,0" />
<Border Background="#0A0A0A" Padding="4">
<Image Source="{Binding CellImage}" Stretch="Uniform" Height="220" />
</Border>
<TextBlock Text="{Binding DistanceText}" Foreground="LightGray" FontSize="13" Margin="0,8,0,0" />
</StackPanel>
</ScrollViewer>
</Window>