mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-13 03:47:40 +02:00
957729525d
- **Tool - Morph:** - (Add) Operator: White tophat - Removes small isolated pixels and only return its affected pixels (Image - Noise removal) - (Add) Operator: Black tophat - Closes small holes inside the objects and only return its affected pixels (Gap closing - Image) - (Add) Operator: Hit or miss - Finds pixels in a given kernel pattern - (Remove) Operator: 'Isolate features' as that is the same as the 'White tophat' and is already inbuilt into OpenCV - **Kernels:** - (Add) Option: Use dynamic kernel to enhancement the quality of the borders (#367) - (Add) Kernels are now saved with the operation profile - **PrusaSlicer:** - (Add) Support to slice files to be converted for encrypted CTB format - (Add) Printer: Elegoo Mars 3 (#370) - (Add) Printer: EPAX E10 5K - (Add) Printer: EPAX X10 5K - (Add) Printer: Phrozen Sonic Mini 8K - (Add) Printer: Phrozen Sonic Mega 8K - (Fix) Printer: AnyCubic Photon Mono 4K - display size (#369) - (Fix) Printer: AnyCubic Photon Mono X 6K - display size (#369) - (Add) Tool - Double exposure: Kernel configuration - (Add) Tool - Pixel arithmetic: Kernel configuration - (Add) Calibration - Elephant foot: Use dynamic kernel to enhancement the quality of the borders (#367) - (Fix) Calibrate - Elephant foot: Redo (Ctrl + Z) the operation was crashing the application - (Fix) CTB, PHZ, FDG: Converting files with a null machine name would cause a exception - (Fix) Anycubic files: Bottom lift and speed were showing default values instead of real used value
47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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"
|
|
xmlns:uc="clr-namespace:UVtools.WPF.Controls"
|
|
mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="450"
|
|
x:Class="UVtools.WPF.Controls.Tools.ToolBlurControl">
|
|
|
|
<StackPanel Spacing="10">
|
|
<Grid
|
|
ColumnDefinitions="Auto,10,*"
|
|
RowDefinitions="Auto,10,Auto">
|
|
|
|
<TextBlock
|
|
VerticalAlignment="Center"
|
|
Text="Algorithm:"/>
|
|
<ComboBox
|
|
Grid.Column="2"
|
|
HorizontalAlignment="Left"
|
|
Width="450"
|
|
HorizontalContentAlignment="Stretch"
|
|
Items="{Binding Operation.BlurOperation, Converter={StaticResource EnumToCollectionConverter}, Mode=OneTime}"
|
|
SelectedItem="{Binding Operation.BlurOperation, Converter={StaticResource FromValueDescriptionToEnumConverter}}"/>
|
|
|
|
<TextBlock
|
|
VerticalAlignment="Center"
|
|
Grid.Row="2"
|
|
IsEnabled="{Binding Operation.IsSizeEnabled}"
|
|
Text="Size:"/>
|
|
<NumericUpDown
|
|
Grid.Row="2"
|
|
Grid.Column="2"
|
|
HorizontalAlignment="Left"
|
|
Width="150"
|
|
Minimum="1"
|
|
IsEnabled="{Binding Operation.IsSizeEnabled}"
|
|
Value="{Binding Operation.Size}"
|
|
/>
|
|
</Grid>
|
|
|
|
<uc:KernelControl Name="KernelCtrl" Kernel="{Binding $parent[UserControl].DataContext.Operation.Kernel}"
|
|
IsVisible="{Binding $parent[UserControl].DataContext.Operation.IsKernelVisible}"/>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|