1 | initial version |
you should never try do that !
opencv's gui functions HAVE to stay on the main thread.
2 | No.2 Revision |
you should never try do that !
opencv's gui functions functions, like namedWindow, imshow, waitKey
HAVE to stay on the main thread.
and be careful with multithreading in general. most of opencv's functionality is NOT THREADSAFE !
3 | No.3 Revision |
you should never try to do that !
opencv's gui functions, like namedWindow, imshow, waitKey
HAVE to stay on the main thread.
and be careful with multithreading in general. most of opencv's functionality is NOT THREADSAFE !
4 | No.4 Revision |
you should never try to do that !
opencv's gui functions, like namedWindow, imshow, waitKey
HAVE to stay on the main thread.
and be careful with multithreading in general. most of opencv's functionality is NOT THREADSAFE by design !