How to handle waitKey() during threading

asked 2017-08-08 12:00:40 -0600

updated 2017-08-08 12:13:42 -0600

berak gravatar image

I am trying to mess around with multi-threading and OpenCV so I wrote the following program.

void performSearch(Mat& original, Mat& grey, Mat& result)
{
    // do stuff
    waitKey();
}

int main()
{
    thread(performSearch, ref(image), ref(image_grey), ref(answer)).join();
}

Obviously, this program will throw an NSInternalInconsistencyException exception because waitKey() needs to be run on the main thread. My question is, how do I attach it to the main thread?

I have an iOS background and with grand central dispatch, I'd simply have to do something along the lines of:

DispatchQueue.main.async // this gets me the main queue asynchronously
{
    // update UI
}
edit retag flag offensive close merge delete

Comments

Why the downvote?

eshirima gravatar imageeshirima ( 2017-08-08 12:14:11 -0600 )edit

apologies, misfired.

berak gravatar imageberak ( 2017-08-08 12:19:23 -0600 )edit