OpenCV with other GUI (like Qt or WxWidgets) on Win32 VC++

后端 未结 5 955
抹茶落季
抹茶落季 2020-12-05 19:20

I want to use OpenCV\'s image processing functions, but not the OpenCV GUI. I\'m using OpenCV 2.0. I will use either Qt4 or WxWidgets for GUI functions. I compile with VC

5条回答
  •  余生分开走
    2020-12-05 19:59

    I have made a little progress. The GUI part of OpenCV does seem to stay out of the way. I have even used it in a WxWidgets application to show an image, and nothing bad seemed to happen. That was on a Windows XP box using VC++ 2008. The only interaction that OpenCV/highGUI appears to have with the windowing system is to make direct Windows API calls and to monitor the event queue for keyboard events, which it passes on.

    I'm working on how to convert from OpenCV images to WxWidgets images and back. A big help you guys are. :-)

提交回复
热议问题