starter_video.cpp changed CV WINDOW KEEPRATIO to just WINDOW KEEPTATIO to fix build error

This commit is contained in:
Kevin Hughes 2013-04-22 16:35:23 -04:00
parent 47c84335f0
commit 3441b2df65

View File

@ -37,7 +37,7 @@ int process(VideoCapture& capture) {
char filename[200];
string window_name = "video | q or esc to quit";
cout << "press space to save a picture. q or esc to quit" << endl;
namedWindow(window_name, CV_WINDOW_KEEPRATIO); //resizable window;
namedWindow(window_name, WINDOW_KEEPRATIO); //resizable window;
Mat frame;
for (;;) {