mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.2 KiB
23 lines
1.2 KiB
<Page |
|
x:Class="OcvImageProcessing.MainPage" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:local="using:OcvImageProcessing" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
mc:Ignorable="d"> |
|
|
|
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}"> |
|
<Image x:Name="PreviewWidget" HorizontalAlignment="Left" Height="512" Margin="10,10,0,0" VerticalAlignment="Top" Width="512"/> |
|
<Button Content="Apply" HorizontalAlignment="Left" Margin="527,71,0,0" VerticalAlignment="Top" Width="293" Height="63" Click="Button_Click"/> |
|
<ComboBox x:Name="FilterTypeWidget" HorizontalAlignment="Left" Margin="527,10,0,0" VerticalAlignment="Top" Width="293" Height="56" SelectedIndex="0"> |
|
<ComboBoxItem Content="Preview"/> |
|
<ComboBoxItem Content="GrayScale"/> |
|
<ComboBoxItem Content="Canny"/> |
|
<ComboBoxItem Content="Blur"/> |
|
<ComboBoxItem Content="Features"/> |
|
<ComboBoxItem Content="Sepia"/> |
|
</ComboBox> |
|
|
|
</Grid> |
|
</Page>
|
|
|