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
-[Ceres Solver](http://ceres-solver.org). Needed by the reconstruction API in order to solve part of the Bundle Adjustment plus the points Intersect. If Ceres Solver is not installed on your system, the reconstruction funcionality will be disabled. **Recommended**
18
19
19
20
Installation
@@ -30,8 +31,10 @@ Start by installing all the dependencies.
30
31
31
32
# CMake
32
33
sudo apt-get install cmake
33
-
# google-glog + gflags
34
-
sudo apt-get install libgoogle-glog-dev
34
+
# gflags
35
+
sudo apt-get install libgflag-dev
36
+
# google-glog(not recommended)
37
+
# sudo apt-get install libgoogle-glog-dev
35
38
# BLAS & LAPACK
36
39
sudo apt-get install libatlas-base-dev
37
40
# Eigen3
@@ -47,6 +50,15 @@ Start by installing all the dependencies.
47
50
sudo apt-get update
48
51
sudo apt-get install libsuitesparse-dev
49
52
53
+
We are now ready to build, test, and install ng-log.
54
+
git clone https://github.com/ng-log/ng-log.git
55
+
cd ng-log
56
+
mkdir build && cd build
57
+
cmake ..
58
+
make -j4
59
+
make test
60
+
sudo make install
61
+
50
62
We are now ready to build, test, and install Ceres.
0 commit comments