Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个c++项目使用openCV 我将我的c++项目构建为一个dll文件以在C#项目中使用,但是当我调试C#项目时,它有一个错误:Unable to load DLL,The specified module could not be found. 请帮助我:D
c++
openCV
C#
Unable to load DLL,The specified module could not be found
我假设您正在使用P/Invoke. 确保OpenCV'sdll 的位置在您的搜索路径(Path64 位 Windows 7 上的环境变量)中,或者 dll 及其所有依赖项与您的托管可执行文件位于同一目录中。该目录通常是bin\Releaseorbin\Debug目录。
P/Invoke
OpenCV's
Path
bin\Release
bin\Debug