diff options
Diffstat (limited to 'cv/video-widget.hpp')
-rw-r--r-- | cv/video-widget.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cv/video-widget.hpp b/cv/video-widget.hpp index b60ad7ed..cad05a20 100644 --- a/cv/video-widget.hpp +++ b/cv/video-widget.hpp @@ -46,6 +46,6 @@ private: cv::Mat frame2, frame3; bool freshp = false; - int width = iround(QWidget::width() * devicePixelRatioF()); - int height = iround(QWidget::height() * devicePixelRatioF()); + int W = iround(QWidget::width() * devicePixelRatioF()); + int H = iround(QWidget::height() * devicePixelRatioF()); }; |