Reputation: 11
I'm interested in ORB-SLAM2, So I searched and found this site https://github.com/Phylliida/orbslam-windows <<
so I read the README file and copied it, but I found these errors.
I already installed OPENCV on windows and I set up the environment variables well.
How can I fix errors?
Upvotes: 0
Views: 1521
Reputation: 105
Try setting OpenCV_DIR in CMakeLists.txt
SET("OpenCV_DIR" "C:/opencv")
If you want an automated installation, build setup for ORB-SALM2, we have it in this repo, scripts\windows\bootstrap.bat
builds opencv and dependencies using vcpkg and build.bat
compiles ORB-SLAM2. Bootstrap usually takes time for first time!!
Upvotes: 2