diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-20 19:05:44 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-24 19:31:24 +0100 |
commit | e202dab212ef8fd284d2745dd66496dcc3a2043e (patch) | |
tree | 345437664c02e65f4b6f3b0dd960d20fd5c2bf58 /cv/video-widget.hpp | |
parent | 48de00ec978261c25e9c4a59479f0607cae751ff (diff) |
fix undefined behavior undescore prefixes
Diffstat (limited to 'cv/video-widget.hpp')
-rw-r--r-- | cv/video-widget.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cv/video-widget.hpp b/cv/video-widget.hpp index 8ad62a3c..104fa21e 100644 --- a/cv/video-widget.hpp +++ b/cv/video-widget.hpp @@ -40,7 +40,7 @@ private: QImage texture; std::vector<unsigned char> vec; QTimer timer; - cv::Mat _frame, _frame2, _frame3; + cv::Mat frame1, frame2, frame3; int width = 320, height = 240; bool freshp = false; }; |