“The application has failed to start because cxcore210.dll was not found”. Why would this happen?

前端 未结 3 1025
不知归路
不知归路 2021-01-26 17:49

I\'m having trouble running basic opencv scripts on my new machine. I\'ve installed opencv2.1. I am linking these files from the linker:

C:\\OpenCV2.1\\

相关标签:
3条回答
  • 2021-01-26 18:00

    this video will help you..

    http://www.youtube.com/watch?v=9nPpa_WiArI

    Or else I came up with another solution just copy the dll files directly into C:\Windows\SysWOW64 folder (this is my system folder). This helped me and my code was executed.

    0 讨论(0)
  • 2021-01-26 18:01

    The DLL needs to be somewhere in the DLL search path, otherwise the loader won't be able to find it.

    The two easiest options are to copy the DLL(s) to the directory in which your executable is located or the directory from which you are running your executable, or to add the directory in which the DLL(s) are located to the PATH.

    0 讨论(0)
  • 2021-01-26 18:03

    I had the same problem:

    I configure correctly the properties of my project, like 100 tutorials says: But never work, so i try copy the dll to the application directory and works. I dont know why the linker dont see the dlls

    I just copy the cv210.lib ,cvaux210.lib, cxcore210.lib ,highgui210.lib

    0 讨论(0)
提交回复
热议问题