Building ORB-SLAM on Ubuntu 16.04 Desktop 64-bit

1. Install dependencies ``` #Pangolin sudo apt-get install libglew-dev sudo apt-get install libboost-dev libboost-thread-dev libboost-filesystem-dev sudo apt-get install git git clone https://github.com/stevenlovegrove/Pangolin.git cd Pangolin mkdir build cd build cmake -DCPP11_NO_BOOST=1 .. make -j4 sudo make install sudo ldconfig [Read More]
Tags: ORB-SLAM

RANdom SAmple Consensus (RANSAC)

w = # inliers in data / # points in data w is not well-known beforehand n : # points needed for estimating a model are selected independently wn: the probability that all n points are inliers 1 - wn: the probability that at least one of the n points... [Read More]
Tags: RANSAC