blob: 9f2b90f69ccfa416481250aec49734c460151f0a (
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
|
/* Copyright (c) 2012 Patrick Ruoff
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* 20130312, WVR: Add 7 lines to resizeGL after resize_frame. This should lower CPU-load.
*/
#include "pt_video_widget.h"
void PTVideoWidget::update_image(const cv::Mat& frame)
{
QMutexLocker foo(&mtx);
if (!freshp)
{
_frame = frame.clone();
freshp = true;
}
}
void PTVideoWidget::update_and_repaint()
{
QImage qframe;
{
QMutexLocker foo(&mtx);
if (_frame.empty() || !freshp)
return;
qframe = QImage(_frame.cols, _frame.rows, QImage::Format_RGB888);
freshp = false;
uchar* data = qframe.bits();
const int pitch = qframe.bytesPerLine();
unsigned char *input = (unsigned char*) _frame.data;
const int chans = _frame.channels();
for (int y = 0; y < _frame.rows; y++)
{
const int step = y * _frame.step;
const int pitch_ = y * pitch;
for (int x = 0; x < _frame.cols; x++)
{
data[pitch_ + x * 3 + 0] = input[step + x * chans + 2];
data[pitch_ + x * 3 + 1] = input[step + x * chans + 1];
data[pitch_ + x * 3 + 2] = input[step + x * chans + 0];
}
}
}
qframe = qframe.scaled(size(), Qt::IgnoreAspectRatio, Qt::FastTransformation);
{
QMutexLocker foo(&mtx);
texture = qframe;
}
update();
}
|