Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KernelConfiguration.cs « Objects « UVtools.Core - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c17089066f3045c9e609b8fe15801561f401807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
 *                     GNU AFFERO GENERAL PUBLIC LICENSE
 *                       Version 3, 19 November 2007
 *  Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 *  Everyone is permitted to copy and distribute verbatim copies
 *  of this license document, but changing it is not allowed.
 */

using Emgu.CV;
using Emgu.CV.CvEnum;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Xml.Serialization;
using UVtools.Core.Extensions;
using UVtools.Core.Managers;

namespace UVtools.Core.Objects;


public sealed class KernelConfiguration : BindableBase, IDisposable
{
    #region Members
    private bool _useDynamicKernel;
    private readonly KernelCacheManager _kernelCache = new();
    private ElementShape _kernelShape = ElementShape.Rectangle;
    private uint _matrixWidth = 3;
    private uint _matrixHeight = 3;
    private string _matrixText = "1 1 1\n1 1 1\n1 1 1";
    private int _anchorX = -1;
    private int _anchorY = -1;
    private Mat? _kernelMat;
    private readonly object _mutex = new();
    private ElementShape _dynamicKernelShape = ElementShape.Ellipse;

    #endregion

    #region Properties
    public bool UseDynamicKernel
    {
        get => _useDynamicKernel;
        set
        {
            if(!RaiseAndSetIfChanged(ref _useDynamicKernel, value)) return;
            _kernelCache.UseDynamicKernel = value;
        }
    }

    public ElementShape DynamicKernelShape
    {
        get => _dynamicKernelShape;
        set
        {
            if (!RaiseAndSetIfChanged(ref _dynamicKernelShape, value)) return;
            _kernelCache.DynamicKernelShape = value;
        }
    }

    public int AnchorX
    {
        get => _anchorX;
        set => RaiseAndSetIfChanged(ref _anchorX, value);
    }

    public int AnchorY
    {
        get => _anchorY;
        set => RaiseAndSetIfChanged(ref _anchorY, value);
    }

    public string MatrixText
    {
        get => _matrixText;
        set => RaiseAndSetIfChanged(ref _matrixText, value);
    }


    public uint MatrixWidth
    {
        get => _matrixWidth;
        set => RaiseAndSetIfChanged(ref _matrixWidth, value);
    }

    public uint MatrixHeight
    {
        get => _matrixHeight;
        set => RaiseAndSetIfChanged(ref _matrixHeight, value);
    }

    public Size MatrixSize => new((int)_matrixWidth, (int)_matrixHeight);

    [XmlIgnore]
    public Mat? KernelMat
    {
        get
        {
            lock (_mutex)
            {
                if (_kernelMat is null)
                {
                    
                    if (!string.IsNullOrWhiteSpace(_matrixText))
                    {
                        GenerateKernelFromText();
                    }
                    else
                    {
                        SetKernel(ElementShape.Rectangle);
                    }
                }
            }

            return _kernelMat;
        }
        set => _kernelMat = value;
    }

    public ElementShape KernelShape
    {
        get => _kernelShape;
        set => RaiseAndSetIfChanged(ref _kernelShape, value);
    }

    public IEnumerable<ElementShape> KernelShapes => ((ElementShape[])Enum.GetValues(typeof(ElementShape))).Where(element => element != ElementShape.Custom);

    public Point Anchor
    {
        get => new(_anchorX, _anchorY);
        set
        {
            _anchorX = value.X;
            _anchorY = value.Y;
        }
    }
    #endregion

    #region Constructor
    public KernelConfiguration() { }
    #endregion

    #region Methods
    public void ResetKernel()
    {
        KernelShape = ElementShape.Rectangle;
        MatrixWidth = 3;
        MatrixHeight = 3;
        AnchorX = -1;
        AnchorY = -1;
        _kernelMat?.Dispose();
        _kernelMat = null;
        MatrixText = "1 1 1\n1 1 1\n1 1 1";
    }

    public void GenerateKernelText()
    {
        using var kernel = CvInvoke.GetStructuringElement(KernelShape, MatrixSize, Anchor);
        string text = string.Empty;
        for (int y = 0; y < kernel.Height; y++)
        {
            var span = kernel.GetRowSpan<byte>(y);
            var line = string.Empty;
            for (int x = 0; x < span.Length; x++)
            {
                line += $" {span[x]}";
            }

            line = line.Remove(0, 1);
            text += line;
            if (y < kernel.Height - 1)
            {
                text += '\n';
            }
        }

        MatrixText = text;
    }

    public void GenerateKernelFromText()
    {
        if (string.IsNullOrEmpty(_matrixText))
        {
            throw new InvalidOperationException("Invalid kernel: Kernel can't be empty.");
        }
        Matrix<byte> matrix = null!;
        var lines = _matrixText.Split('\n');
        for (var row = 0; row < lines.Length; row++)
        {
            var bytes = lines[row].Trim().Split(' ');
            if (row == 0)
            {
                matrix = new Matrix<byte>(lines.Length, bytes.Length);
            }
            else
            {
                if (matrix.Cols != bytes.Length)
                {
                    matrix.Dispose();
                    throw new InvalidOperationException($"Invalid kernel: Row {row + 1} have invalid number of columns, the matrix must have equal columns count per line, per defined on line 1");
                }
            }

            for (int col = 0; col < bytes.Length; col++)
            {
                if (byte.TryParse(bytes[col], out var value))
                {
                    matrix[row, col] = value;
                }
                else
                {
                    matrix.Dispose();
                    throw new InvalidOperationException($"Invalid kernel: {bytes[col]} is a invalid number, use values from 0 to 255");
                }
            }
        }
        if (matrix.Cols <= _anchorX || matrix.Rows <= _anchorY)
        {
            matrix.Dispose();
            throw new InvalidOperationException("Invalid kernel: Anchor position X/Y can't be higher or equal than kernel columns/rows\nPlease fix the values.");
        }

        _kernelMat?.Dispose();
        KernelMat = matrix.Mat;
    }


    public void SetKernel(ElementShape shape, Size size, Point anchor)
    {
        KernelMat = CvInvoke.GetStructuringElement(shape, size, anchor);
    }

    public void SetKernel(ElementShape shape, Size size) => SetKernel(shape, size, EmguExtensions.AnchorCenter);
    public void SetKernel(ElementShape shape) => SetKernel(shape, new Size(3, 3), EmguExtensions.AnchorCenter);

    public Mat? GetKernel()
    {
        return KernelMat;
    }

    public Mat? GetKernel(ref int iterations)
    {
        if (!_useDynamicKernel) return KernelMat;
        return _kernelCache.Get(ref iterations);
    }

    public void Dispose()
    {
        _kernelMat?.Dispose();
        _kernelCache?.Dispose();
    }
    #endregion
}