We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey when compiling this package I get: Policy "CMP0046" is not known to this version of CMake.
However If I uncomment that line in the CMake Lists file:
I get alot more errors:
:44:71: fatal error: opencv2/calib3d/calib3d_c.h: No such file or directory #include <opencv2/calib3d/calib3d_c.h> //Compatibility with OpenCV 3.x
The text was updated successfully, but these errors were encountered:
found solution myself:
uncomment this line in the CMakeLists.txt containing the CMP0046
Next in the Util.h file do this:
//#include <opencv2/calib3d/calib3d_c.h> //Compatibility with OpenCV 3.x #include <opencv2/calib3d/calib3d.hpp>
Sorry, something went wrong.
No branches or pull requests
Hey when compiling this package I get:
Policy "CMP0046" is not known to this version of CMake.
However If I uncomment that line in the CMake Lists file:
I get alot more errors:
:44:71: fatal error: opencv2/calib3d/calib3d_c.h: No such file or directory
#include <opencv2/calib3d/calib3d_c.h> //Compatibility with OpenCV 3.x
The text was updated successfully, but these errors were encountered: