I am sure that these are warnings, not errors. Your project will still work fine.
However, since you should always try to fix compiler warnings, let's see what we can find. I am not completely familiar with OpenCV, and you are not referencing the wiki tutorial that you are following. But it seems to me that the problem is that you are using a 64-bit version of Windows (as evidenced by the "SysWOW64" folder on the path to the DLL files), but the OpenCV material you created for the 32-bit platform. Therefore, you may need to rebuild the project using CMake, as described here .
In particular, the listed files are Windows system files. PDB files contain debugging information that Visual Studio uses so you can embed and debug compiled code. In fact, you do not need PDB files for system libraries that allow you to debug your own code. But if you want, you can download symbols for system libraries. Go to the "Debug" menu, click "Options and Settings" and scroll down to the right until you see "Enable Source Server Support." Make sure the option is checked. Then in the tree on the left click "Symbols" and make sure that the option "Microsoft Symbol Servers" is selected. Click OK to close the dialog box, and then try restoring.
Cody Gray Jan 27 2018-11-11T00: 00Z
source share