Home > database >  openCV_world452.dlll missing when running asciigenerator c
openCV_world452.dlll missing when running asciigenerator c

Time:12-10

So im am trying to convert an video to an ascii format to be able to run in a console with c . I found enter image description here

Thanks in advance!

CodePudding user response:

So basically i followed this tutorial to install open cv:

http:// https://sh-tsang.medium.com/tutorial-opencv-v4-2-0-installation-in-windows-10-eca7c2c8c300

But the first version i downloaded didn't have the dll i needed so i've downloaded version 4.5.4 , 4.5.2 and 3.4.15 ,extracted them in the same folder and it seems that one of them had my dll , now its working, thanks to everyone :)

CodePudding user response:

I suggest you use dependency walker

https://dependencywalker.com/

You will most likely find that the OpenCV libraries are not in your path.

Try to copy all missing libraries into the same folder as your executable and see if it solves the problem.

  • Related