better-genshin-impact/BetterGenshinImpact.Test/MainWindow.xaml
2024-04-13 14:26:27 +08:00

54 lines
1.9 KiB
XML

<Window x:Class="BetterGenshinImpact.Test.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="Test"
Width="120"
Height="450"
mc:Ignorable="d">
<Canvas>
<Button Canvas.Left="10"
Canvas.Top="10"
Width="100"
Height="23"
Click="ShowCameraRecWindow"
Content="视角识别测试" />
<Button Canvas.Left="10"
Canvas.Top="40"
Width="100"
Height="23"
Click="ShowHsvTestWindow"
Content="Hsv拉条" />
<Button Canvas.Left="10"
Canvas.Top="70"
Width="100"
Height="23"
Click="DoMapPuzzle"
Content="拼接超大地图" />
<Button Canvas.Left="10"
Canvas.Top="100"
Width="100"
Height="23"
Click="DoMatchTest"
Content="特征匹配测试" />
<Button Canvas.Left="10"
Canvas.Top="130"
Width="100"
Height="23"
Click="DoMatchTemplateTest"
Content="模板匹配测试" />
<Button Canvas.Left="10"
Canvas.Top="160"
Width="100"
Height="23"
Click="MapDrawTeleportPoint"
Content="超大地图标点" />
<Button Canvas.Left="10"
Canvas.Top="190"
Width="100"
Height="23"
Click="GenAvatarData"
Content="生成侧面头像数据集" />
</Canvas>
</Window>