You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Ubuntu 16.04, if you installed opencv from repository by apt such as apt install libopencv, you should change some code in file src/akaze_* and src/lib/utils.cpp
such as #include <opencv2/calib3d.hpp> #include <opencv2/imgproc.hpp>
to #include <opencv2/calib3d/calib3d.hpp> #include <opencv2/imgproc/imgproc.hpp>.
The text was updated successfully, but these errors were encountered:
On Ubuntu 16.04, if you installed opencv from repository by apt such as
apt install libopencv
, you should change some code in filesrc/akaze_*
andsrc/lib/utils.cpp
such as
#include <opencv2/calib3d.hpp>
#include <opencv2/imgproc.hpp>
to
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/imgproc/imgproc.hpp>
.The text was updated successfully, but these errors were encountered: