Hello,

I am currently developing an application that needs to be able to both use OpenCV (computer vision library) optimally, and at the same time offer the user a nice graphical interface, all on ubuntu linux. thus far i have tried to integrate gtkmm and opencv using pthreads - using one thread for the image capturing and processing, and another for the graphical user interface. this has not worked, however, as it seems that using gtkmm in conjunction with pthreads is a no-go: while the thread with the GUI starts up fine, the thread initialized second (containing the image processing procedures from OpenCV) does not proceed until the thread containing the GUI has been terminated.

does anyone know of a good way to integrate these two?

thank you!