First time here? Check out the FAQ!

Ask Your Question
1

Program termination

asked Apr 19 '13

daryllee gravatar image

I just installed OpenCV 2.4.5 on my Mac OSX (Mountain Lion) and ran the "lena" tutorial. It works fine except for termination. The last few lines of code in the tutorial are:

imshow( "Display Image", image );
waitKey(0);
return 0;

Based on the waitKey() documentation, it looks like any keystroke should get me out of the program. However, any key I type is echoed, but only Ctl-C terminates the program. The Quit item on the Menu doesn't terminate either, although I'm not as surprised by that.

Preview: (hide)

1 answer

Sort by » oldest newest most voted
3

answered Apr 19 '13

HD_Mouse gravatar image

Did you try clicking the displayed window and then pressing a key? The focus of your OS may still be with the terminal, so your keystrokes are being intercepted by your terminal, rather than the window created from imshow().

Preview: (hide)

Comments

Well, duh! I was very careful to click the terminal window that I launched the program from; it just never occurred to me that the display window needed focus. Thanks for the pointer!

daryllee gravatar imagedaryllee (Apr 20 '13)edit

Question Tools

Stats

Asked: Apr 19 '13

Seen: 723 times

Last updated: Apr 19 '13