I have an issue linking the provided opencv_world340.lib
file to my application:
I downloaded the windows prebuilt version of Opencv 3.4.0 from here. I linked the opencv_world340.lib to my application with headers and runtime dll from the build\x64\vc14 folder to my Visual Studio 2015 C++ console application.
I am able to create a cv::Mat
from file, it is well created in runtime, but when I try to convert it with .convertTo()
(or use any further functionality of OpenCV) I got a LNK2019 linking issue that the function is not resolved. I though the opencv_world340.lib
is a all_in_one file containing every module.
Am I missing something?