From: Antonio Ospite <ao2@ao2.it>
Date: Fri, 23 Feb 2018 09:43:25 +0000 (+0100)
Subject: opencv_trail_effect.cpp: make the window resizeable
X-Git-Url: https://git.ao2.it/experiments/opencv_trail_effect.git/commitdiff_plain/b050cda477dda110886e4b65ae67f217bca0681a?ds=sidebyside;hp=9f3139a7fb1b4ce22d162cd703e0956b737cc15e

opencv_trail_effect.cpp: make the window resizeable
---

diff --git a/opencv_trail_effect.cpp b/opencv_trail_effect.cpp
index 5fec5dc..6c0d09c 100644
--- a/opencv_trail_effect.cpp
+++ b/opencv_trail_effect.cpp
@@ -191,7 +191,7 @@ int main(int argc, char *argv[])
 		goto out_delete_trail;
 	}
 
-	cv::namedWindow("Frame", CV_WINDOW_AUTOSIZE);
+	cv::namedWindow("Frame", CV_WINDOW_NORMAL);
 
 	for (;;) {
 		inputVideo >> input_frame;