diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-26 16:31:40 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-26 16:31:40 +0200 |
commit | a3885f8346920a8238d890361e417585d67ed1eb (patch) | |
tree | 703322b14b5435ebaba740cf0e2192b8e9abef53 | |
parent | ef7bba81d346e86e92428b75f41ff6ef148e4928 (diff) |
PT: use full frame size
Signed-off-by: Stanislaw Halik <sthalik@misaki.pl>
-rw-r--r-- | FTNoIR_Tracker_PT/ftnoir_tracker_pt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FTNoIR_Tracker_PT/ftnoir_tracker_pt.cpp b/FTNoIR_Tracker_PT/ftnoir_tracker_pt.cpp index 9aed5a1f..5cb7bdf3 100644 --- a/FTNoIR_Tracker_PT/ftnoir_tracker_pt.cpp +++ b/FTNoIR_Tracker_PT/ftnoir_tracker_pt.cpp @@ -177,8 +177,8 @@ void Tracker::update_show_video_widget() }
else if (video_frame && show_video_widget && !video_widget)
{
- const int VIDEO_FRAME_WIDTH = 252;
- const int VIDEO_FRAME_HEIGHT = 189;
+ const int VIDEO_FRAME_WIDTH = 320;
+ const int VIDEO_FRAME_HEIGHT = 240;
video_widget = new PTVideoWidget(video_frame, this);
QHBoxLayout* video_layout = new QHBoxLayout();
video_layout->setContentsMargins(0, 0, 0, 0);
|