I am running into some trouble while getting openccv to work in visual studio. I followed the instructions step by step from this tutorial OpenCV 3 Windows 10 Installation Tutorial - Part 1 - C++, but still ran into an issue.
I get an OpenCV.exe - System Error that says the following:
The program can't start because opencv_world320.dll is missing from your computer. Try reinstalling the program to fix this problem.
I checked the PATH in command prompt and C:\OpenCV.3.2.0\opencv\build\x64\vc14\bin appears.
I get the following in the Output:'OpenCV.exe' (Win32): Loaded 'C:\Users\tenicho\Documents\Visual Studio 2017\Projects\OpenCV\x64\Debug\OpenCV.exe'. Symbols loaded.
'OpenCV.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'. Cannot find or open the PDB file.
'OpenCV.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'. Cannot find or open the PDB file.
'OpenCV.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'. Cannot find or open the PDB file.
'OpenCV.exe' (Win32): Loaded 'C:\Windows\System32\vcruntime140d.dll'. Cannot find or open the PDB file.
'OpenCV.exe' (Win32): Loaded 'C:\Windows\System32\msvcp140d.dll'. Cannot find or open the PDB file.
'OpenCV.exe' (Win32): Loaded 'C:\Windows\System32\ucrtbased.dll'. Cannot find or open the PDB file.
The thread 0x2798 has exited with code -1073741515 (0xc0000135).
The thread 0x182c has exited with code -1073741515 (0xc0000135).
The thread 0x13f0 has exited with code -1073741515 (0xc0000135).
The program '[9604] OpenCV.exe' has exited with code -1073741515 (0xc0000135) 'A dependent dll was not found'.
Here is a picture of the folder that the path leads to. You can see that the .dll file is there.enter image description here
Anyone have this issue?
Thank You in advance!