Simonf
Simonf

Reputation: 9

Error code 0xc0000135 in Qt Creator with OpenCV

Im a novice coder, that needs to make a simple UI - i've chosen to do it in Qt Creator.

As i need to incorporate a webcam feed, i've been advised to use OpenCV. I've followed the following guide: https://wiki.qt.io/How_to_setup_Qt_and_openCV_on_Windows

However im running into the problem "Error code 0xc0000135" when i try to debug my code.

I've added the different PATHs to the Enviromental Variables as requested in the guide. Anyone with a kind idea of where the issue might lie, or can it be anywhere in the process?

Cheers!

Upvotes: 0

Views: 453

Answers (1)

Mr. Developerdude
Mr. Developerdude

Reputation: 9668

I am going to suggest that unless you are going to do a lot of computer vision stuff, that you leave OpenCV for the native Qt approach which is QMediaPlayer.

In QtCreator the example is built in, just select "Welcome" -> "Examples" -> "search for video player" -> "select example.

enter image description here

Or if you prefer browsing online, here it is.

If you still want to use OpenCV, please add more details to the question so it is easier to help you!

Upvotes: 1

Related Questions