better-genshin-impact/BetterGenshinImpact.Test/MainWindow.xaml

90 lines
3.2 KiB
Plaintext
Raw Permalink Normal View History

2023-12-11 02:27:39 +08:00
<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"
2024-04-02 22:03:53 +08:00
Title="Test"
2024-08-31 13:22:05 +08:00
Width="240"
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"
2024-11-20 22:49:35 +08:00
Content="生成特征点" />
2024-04-02 22:03:53 +08:00
<Button Canvas.Left="10"
Canvas.Top="130"
Width="100"
Height="23"
Click="DoMatchTemplateTest"
Content="模板匹配测试" />
2024-04-07 22:05:36 +08:00
<Button Canvas.Left="10"
Canvas.Top="160"
Width="100"
Height="23"
Click="MapDrawTeleportPoint"
Content="画传送点" />
2024-04-13 14:26:27 +08:00
<Button Canvas.Left="10"
Canvas.Top="190"
Width="100"
Height="23"
Click="GenAvatarData"
Content="侧面头像数据集" />
<Button Canvas.Left="120"
Canvas.Top="190"
Width="100"
Height="23"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Click="GenAvatarDataT"
Content="透明头像数据集" />
2024-05-23 00:27:13 +08:00
<Button Canvas.Left="10"
2024-06-06 00:56:09 +08:00
Canvas.Top="220"
2024-05-23 00:27:13 +08:00
Width="100"
Height="23"
Click="AutoCookTestCase"
Content="自动烹饪图像测试" />
2024-06-23 22:17:32 +08:00
<Button Canvas.Left="10"
Canvas.Top="250"
Width="100"
Height="23"
Click="MapPathView"
Content="路线地图查看" />
2024-08-31 13:22:05 +08:00
<Button Canvas.Left="120"
Canvas.Top="10"
Width="100"
Height="23"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Click="ZoomOut"
Content="缩小地图到256" />
2024-11-30 18:10:26 +08:00
<Button Canvas.Left="120"
Canvas.Top="40"
Width="100"
Height="23"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Click="CameraTest"
Content="新视角识别测试" />
</Canvas>
2024-04-13 14:26:27 +08:00
</Window>