radioactiveelement.cpp
11.0 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/* Webcamoid, webcam capture application.
* Copyright (C) 2016 Gonzalo Exequiel Pedone
*
* Webcamoid is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Webcamoid is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Webcamoid. If not, see <http://www.gnu.org/licenses/>.
*
* Web-Site: http://webcamoid.github.io/
*/
#include <QDataStream>
#include <QQmlContext>
#include <QSize>
#include <QtMath>
#include <akfrac.h>
#include <akpacket.h>
#include <akpluginmanager.h>
#include <akvideocaps.h>
#include <akvideoconverter.h>
#include <akvideomixer.h>
#include <akvideopacket.h>
#include "radioactiveelement.h"
class RadioactiveElementPrivate
{
public:
QSize m_frameSize;
AkVideoPacket m_prevFrame;
AkVideoPacket m_blurZoomBuffer;
AkElementPtr m_blurFilter {akPluginManager->create<AkElement>("VideoFilter/Blur")};
AkElementPtr m_zoomFilter {akPluginManager->create<AkElement>("VideoFilter/Zoom")};
RadioactiveElement::RadiationMode m_mode {RadioactiveElement::RadiationModeHardColor};
int m_threshold {31};
int m_lumaThreshold {95};
int m_alphaDiff {8};
QRgb m_radColor {qRgb(0, 255, 0)};
AkVideoConverter m_videoConverter {{AkVideoCaps::Format_argbpack, 0, 0, {}}};
AkVideoMixer m_videoMixer;
AkVideoMixer m_bzVideoMixer;
AkVideoPacket imageDiff(const AkVideoPacket &img1,
const AkVideoPacket &img2,
int threshold,
int lumaThreshold,
QRgb radColor,
RadioactiveElement::RadiationMode mode);
AkVideoPacket imageAlphaDiff(const AkVideoPacket &src, int alphaDiff);
};
RadioactiveElement::RadioactiveElement(): AkElement()
{
this->d = new RadioactiveElementPrivate;
this->d->m_blurFilter->setProperty("radius", 2);
this->d->m_zoomFilter->setProperty("zoom", 1.1);
QObject::connect(this->d->m_blurFilter.data(),
SIGNAL(radiusChanged(int)),
this,
SIGNAL(blurChanged(int)));
QObject::connect(this->d->m_zoomFilter.data(),
SIGNAL(zoomChanged(qreal)),
this,
SIGNAL(zoomChanged(qreal)));
}
RadioactiveElement::~RadioactiveElement()
{
delete this->d;
}
RadioactiveElement::RadiationMode RadioactiveElement::mode() const
{
return this->d->m_mode;
}
int RadioactiveElement::blur() const
{
return this->d->m_blurFilter->property("radius").toInt();
}
qreal RadioactiveElement::zoom() const
{
return this->d->m_zoomFilter->property("zoom").toReal();
}
int RadioactiveElement::threshold() const
{
return this->d->m_threshold;
}
int RadioactiveElement::lumaThreshold() const
{
return this->d->m_lumaThreshold;
}
int RadioactiveElement::alphaDiff() const
{
return this->d->m_alphaDiff;
}
QRgb RadioactiveElement::radColor() const
{
return this->d->m_radColor;
}
QString RadioactiveElement::controlInterfaceProvide(const QString &controlId) const
{
Q_UNUSED(controlId)
return QString("qrc:/Radioactive/share/qml/main.qml");
}
void RadioactiveElement::controlInterfaceConfigure(QQmlContext *context,
const QString &controlId) const
{
Q_UNUSED(controlId)
context->setContextProperty("Radioactive", const_cast<QObject *>(qobject_cast<const QObject *>(this)));
context->setContextProperty("controlId", this->objectName());
}
AkPacket RadioactiveElement::iVideoStream(const AkVideoPacket &packet)
{
this->d->m_videoConverter.begin();
auto src = this->d->m_videoConverter.convert(packet);
this->d->m_videoConverter.end();
if (!src)
return {};
auto dst = src;
QSize frameSize(src.caps().width(), src.caps().height());
if (frameSize != this->d->m_frameSize) {
this->d->m_blurZoomBuffer = AkVideoPacket();
this->d->m_prevFrame = AkVideoPacket();
this->d->m_frameSize = frameSize;
}
if (!this->d->m_prevFrame) {
this->d->m_blurZoomBuffer = AkVideoPacket(src.caps(), true);
} else {
// Compute the difference between previous and current frame,
// and save it to the buffer.
auto diff = this->d->imageDiff(this->d->m_prevFrame,
src,
this->d->m_threshold,
this->d->m_lumaThreshold,
this->d->m_radColor,
this->d->m_mode);
this->d->m_bzVideoMixer.begin(&this->d->m_blurZoomBuffer);
this->d->m_bzVideoMixer.draw(diff);
this->d->m_bzVideoMixer.end();
// Blur buffer.
AkVideoPacket blur =
this->d->m_blurFilter->iStream(this->d->m_blurZoomBuffer);
// Zoom buffer.
AkVideoPacket zoom = this->d->m_zoomFilter->iStream(blur);
// Reduce alpha.
auto alphaDiff = this->d->imageAlphaDiff(zoom, this->d->m_alphaDiff);
this->d->m_blurZoomBuffer = alphaDiff;
// Apply buffer.
this->d->m_videoMixer.begin(&dst);
this->d->m_videoMixer.draw(this->d->m_blurZoomBuffer);
this->d->m_videoMixer.end();
}
this->d->m_prevFrame = src;
if (dst)
emit this->oStream(dst);
return dst;
}
void RadioactiveElement::setMode(RadiationMode mode)
{
if (this->d->m_mode == mode)
return;
this->d->m_mode = mode;
emit this->modeChanged(mode);
}
void RadioactiveElement::setBlur(int blur)
{
this->d->m_blurFilter->setProperty("radius", blur);
}
void RadioactiveElement::setZoom(qreal zoom)
{
this->d->m_zoomFilter->setProperty("zoom", zoom);
}
void RadioactiveElement::setThreshold(int threshold)
{
if (this->d->m_threshold == threshold)
return;
this->d->m_threshold = threshold;
emit this->thresholdChanged(threshold);
}
void RadioactiveElement::setLumaThreshold(int lumaThreshold)
{
if (this->d->m_lumaThreshold == lumaThreshold)
return;
this->d->m_lumaThreshold = lumaThreshold;
emit this->lumaThresholdChanged(lumaThreshold);
}
void RadioactiveElement::setAlphaDiff(int alphaDiff)
{
if (this->d->m_alphaDiff == alphaDiff)
return;
this->d->m_alphaDiff = alphaDiff;
emit this->alphaDiffChanged(alphaDiff);
}
void RadioactiveElement::setRadColor(QRgb radColor)
{
if (this->d->m_radColor == radColor)
return;
this->d->m_radColor = radColor;
emit this->radColorChanged(radColor);
}
void RadioactiveElement::resetMode()
{
this->setMode(RadiationModeHardColor);
}
void RadioactiveElement::resetBlur()
{
this->setBlur(2);
}
void RadioactiveElement::resetZoom()
{
this->setZoom(1.1);
}
void RadioactiveElement::resetThreshold()
{
this->setThreshold(31);
}
void RadioactiveElement::resetLumaThreshold()
{
this->setLumaThreshold(95);
}
void RadioactiveElement::resetAlphaDiff()
{
this->setAlphaDiff(8);
}
void RadioactiveElement::resetRadColor()
{
this->setRadColor(qRgb(0, 255, 0));
}
QDataStream &operator >>(QDataStream &istream, RadioactiveElement::RadiationMode &mode)
{
int modeInt;
istream >> modeInt;
mode = static_cast<RadioactiveElement::RadiationMode>(modeInt);
return istream;
}
QDataStream &operator <<(QDataStream &ostream, RadioactiveElement::RadiationMode mode)
{
ostream << static_cast<int>(mode);
return ostream;
}
AkVideoPacket RadioactiveElementPrivate::imageDiff(const AkVideoPacket &img1,
const AkVideoPacket &img2,
int threshold,
int lumaThreshold,
QRgb radColor,
RadioactiveElement::RadiationMode mode)
{
int width = qMin(img1.caps().width(), img2.caps().width());
int height = qMin(img1.caps().height(), img2.caps().height());
auto ocaps = img1.caps();
ocaps.setWidth(width);
ocaps.setHeight(height);
AkVideoPacket diff(ocaps);
int radR = qRed(radColor);
int radG = qGreen(radColor);
int radB = qBlue(radColor);
for (int y = 0; y < height; y++) {
auto iLine1 = reinterpret_cast<const QRgb *>(img1.constLine(0, y));
auto iLine2 = reinterpret_cast<const QRgb *>(img2.constLine(0, y));
auto oLine = reinterpret_cast<QRgb *>(diff.line(0, y));
for (int x = 0; x < width; x++) {
auto &pixel1 = iLine1[x];
int r1 = qRed(pixel1);
int g1 = qGreen(pixel1);
int b1 = qBlue(pixel1);
auto &pixel2 = iLine2[x];
int r2 = qRed(pixel2);
int g2 = qGreen(pixel2);
int b2 = qBlue(pixel2);
int dr = r1 - r2;
int dg = g1 - g2;
int db = b1 - b2;
int alpha = dr * dr + dg * dg + db * db;
alpha = int(qSqrt(alpha / 3.0));
if (mode == RadioactiveElement::RadiationModeSoftNormal
|| mode == RadioactiveElement::RadiationModeSoftColor)
alpha = alpha < threshold? 0: alpha;
else
alpha = alpha < threshold? 0: 255;
int gray = qGray(pixel2);
alpha = gray < lumaThreshold? 0: alpha;
int r;
int g;
int b;
if (mode == RadioactiveElement::RadiationModeHardNormal
|| mode == RadioactiveElement::RadiationModeSoftNormal) {
r = r2;
g = g2;
b = b2;
} else {
r = radR;
g = radG;
b = radB;
}
oLine[x] = qRgba(r, g, b, alpha);
}
}
return diff;
}
AkVideoPacket RadioactiveElementPrivate::imageAlphaDiff(const AkVideoPacket &src,
int alphaDiff)
{
AkVideoPacket dst(src.caps());
dst.copyMetadata(src);
alphaDiff = qBound(0, alphaDiff, 255);
for (int y = 0; y < src.caps().height(); y++) {
auto srcLine = reinterpret_cast<const QRgb *>(src.constLine(0, y));
auto dstLine = reinterpret_cast<QRgb *>(dst.line(0, y));
for (int x = 0; x < src.caps().width(); x++) {
auto &pixel = srcLine[x];
int r = qRed(pixel);
int g = qGreen(pixel);
int b = qBlue(pixel);
int a = qBound(0, qAlpha(pixel) - alphaDiff, 255);
dstLine[x] = qRgba(r, g, b, a);
}
}
return dst;
}
#include "moc_radioactiveelement.cpp"