1 | initial version |
you have to append the folder containing the opencv_worldxxx.dll's to the PATH environment variable (so your program can later find them at runtime) like:
setx PATH %PATH%;c:\opencv\build\bin\x64\vc15\bin
2 | No.2 Revision |
you have to append the folder containing the opencv_worldxxx.dll's to the PATH environment variable (so your program can later find them at runtime) like:
setx PATH %PATH%;c:\opencv\build\bin\x64\vc15\bin
(and then you probably need to restart your ide, so it can pick up the changes)