-
Notifications
You must be signed in to change notification settings - Fork 0
/
filter.go
287 lines (237 loc) · 5.09 KB
/
filter.go
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
package cvpipe
import (
"image"
"image/color"
"gocv.io/x/gocv"
)
type Filter interface {
Name() string
Apply(m *PipeMat) *PipeMat
Close()
}
type threshold struct {
thresh float32
maxValue float32
typ gocv.ThresholdType
}
func NewThreshold(thresh, maxValue float32, typ gocv.ThresholdType) Filter {
return &threshold{
thresh: thresh,
maxValue: maxValue,
typ: typ,
}
}
func (t *threshold) Apply(m *PipeMat) *PipeMat {
gocv.Threshold(*m.mat, m.temp, t.thresh, t.maxValue, t.typ)
m.mat = m.temp
return m
}
func (t *threshold) Name() string {
return "threshold"
}
func (t *threshold) Close() {
return
}
type gaussianBlur struct {
kSize image.Point
sigmaX float64
sigmaY float64
typ gocv.BorderType
}
func NewGaussianBlur(ksize image.Point, sigmaX, sigmaY float64, typ gocv.BorderType) Filter {
return &gaussianBlur{
kSize: ksize,
sigmaX: sigmaX,
sigmaY: sigmaY,
typ: typ,
}
}
func (g *gaussianBlur) Apply(m *PipeMat) *PipeMat {
gocv.GaussianBlur(*m.mat, m.temp, g.kSize, g.sigmaX, g.sigmaY, g.typ)
m.mat = m.temp
return m
}
func (g *gaussianBlur) Name() string {
return "gaussianBlur"
}
func (g *gaussianBlur) Close() {
return
}
type canny struct {
threshold1 float32
threshold2 float32
}
func NewCanny(threshold1, threshold2 float32) Filter {
return &canny{
threshold1: threshold1,
threshold2: threshold2,
}
}
func (c *canny) Apply(m *PipeMat) *PipeMat {
gocv.Canny(*m.mat, m.temp, c.threshold1, c.threshold2)
m.mat = m.temp
return m
}
func (c *canny) Name() string {
return "canny"
}
func (c *canny) Close() {
return
}
type sobel struct {
ddepth gocv.MatType
dx int
dy int
ksize int
scale float64
delta float64
typ gocv.BorderType
}
func NewSobel(ddepth gocv.MatType, dx, dy, ksize int, scale, delta float64, typ gocv.BorderType) Filter {
return &sobel{
dx: dx,
dy: dy,
ksize: ksize,
scale: scale,
delta: delta,
typ: typ,
}
}
func (s *sobel) Apply(m *PipeMat) *PipeMat {
gocv.Sobel(*m.mat, m.temp, m.mat.Type(), s.dx, s.dy, s.ksize, s.scale, s.delta, s.typ)
m.mat = m.temp
return m
}
func (s *sobel) Name() string {
return "sobel"
}
func (s *sobel) Close() {
return
}
type adaptiveThreshold struct {
maxValue float32
adaptiveTyp gocv.AdaptiveThresholdType
typ gocv.ThresholdType
blockSize int
c float32
}
func (a *adaptiveThreshold) Apply(m *PipeMat) *PipeMat {
gocv.AdaptiveThreshold(*m.mat, m.temp, a.maxValue, a.adaptiveTyp, a.typ, a.blockSize, a.c)
m.mat = m.temp
return m
}
func (a *adaptiveThreshold) Name() string {
return "adaptiveThreshold"
}
func NewAdaptiveThreshold(maxValue float32, adaptiveTyp gocv.AdaptiveThresholdType, typ gocv.ThresholdType, blockSize int, c float32) Filter {
return &adaptiveThreshold{
maxValue: maxValue,
adaptiveTyp: adaptiveTyp,
typ: typ,
blockSize: blockSize,
c: c,
}
}
func (a *adaptiveThreshold) Close() {
return
}
type dilate struct {
kernel gocv.Mat
}
func (d *dilate) Apply(m *PipeMat) *PipeMat {
gocv.Dilate(*m.mat, m.temp, d.kernel)
m.mat = m.temp
return m
}
func (d *dilate) Name() string {
return "dilate"
}
func NewDilate(shape gocv.MorphShape, ksize image.Point) Filter {
kernel := gocv.GetStructuringElement(shape, ksize)
return &dilate{
kernel: kernel,
}
}
func (d *dilate) Close() {
d.kernel.Close()
}
type erode struct {
kernel gocv.Mat
}
func (e *erode) Apply(m *PipeMat) *PipeMat {
gocv.Erode(*m.mat, m.temp, e.kernel)
m.mat = m.temp
return m
}
func (e *erode) Name() string {
return "erode"
}
func NewErode(shape gocv.MorphShape, ksize image.Point) Filter {
kernel := gocv.GetStructuringElement(shape, ksize)
return &erode{
kernel: kernel,
}
}
func (e *erode) Close() {
e.kernel.Close()
}
type resize struct {
sz image.Point
fx float64
fy float64
interp gocv.InterpolationFlags
}
func (r *resize) Apply(m *PipeMat) *PipeMat {
gocv.Resize(*m.mat, m.temp, r.sz, r.fx, r.fy, r.interp)
m.mat = m.temp
return m
}
func (r *resize) Name() string {
return "resize"
}
func NewResize(sz image.Point, fx, fy float64, interp gocv.InterpolationFlags) Filter {
return &resize{
sz: sz,
fx: fx,
fy: fy,
interp: interp,
}
}
func (r *resize) Close() {
return
}
type morphologyEx struct {
op gocv.MorphType
kernel gocv.Mat
}
func (me *morphologyEx) Apply(m *PipeMat) *PipeMat {
gocv.MorphologyEx(*m.mat, m.temp, me.op, me.kernel)
m.mat = m.temp
return m
}
func NewMorphology(op gocv.MorphType, shape gocv.MorphShape, ksize image.Point) Filter {
kernel := gocv.GetStructuringElement(shape, ksize)
return &morphologyEx{
op: op,
kernel: kernel,
}
}
func (me *morphologyEx) Close() {
me.kernel.Close()
}
func (me *morphologyEx) Name() string {
return "morphologyEx"
}
type findAndDrawContours struct {
mode gocv.RetrievalMode
method gocv.ContourApproximationMode
color color.RGBA
thickness int
contourIdx int
}
func (c *findAndDrawContours) Apply(m *PipeMat) *PipeMat {
contours := gocv.FindContours(*m.mat, c.mode, c.method)
defer contours.Close()
gocv.DrawContours(m.mat, contours, c.contourIdx, c.color, c.thickness)
return m
}