I am currently using OpenCV v4.7.0 with C++. I have built and installed the OpenCV extra modules, and I have updated my linker settings, include directories, and additional library directories accordingly in my Visual Studio 2019 project properties.
I am following this tutorial directly: https://docs.opencv.org/3.4/d5/d6f/tutorial_feature_flann_matcher.html. The project builds without any errors or warnings. I get a runtime error when creating the SURF detector. The line seen below is when the error occurs:
Ptr<SURF> detector = SURF::create( minHessian );
The error can be seen below:
Unhandled exception at 0x00007FFC8A95051C in vs_src.exe: Microsoft C++ exception: cv::Exception at memory location 0x000000F9CD70E680.
I have tried catching the cv::Exception, but there is no information that comes with this error. What can I do to troubleshoot and resolve this issue?