Git Product home page Git Product logo

mapcreator's Introduction

MapCreator

Overview

Project Status: Active โ€“ The project has reached an usable state and is being actively developed. Build Status

VisualSLAM experiment toolset.

Now it can only read saved Xtion frames (with or without calibration infos) and run off-line map creation.

The pipeline works like this. At first, it matches the keypoints in two frames, and find matched keypoints in the 3d point clouds such that we can have the 3d matching keypoints sets. Secondly, we compute the trasformation matrix between the two 3d keypoint sets. Lastly, it stitches the 3d point clouds together using this tranformation matrix. And we perform the this computation every two frames build up a 3d point cloud map.

Dependencies

macOS

sudo port selfupdate
sudo port upgrade outdated
sudo port install pkgconfig glm boost qt59 opencv log4cxx

Debian/Ubuntu

sudo apt update
sudo apt install -y pkg-config libboost-all-dev qt5-default qtbase5-dev qtdeclarative5-dev libqt5opengl5-dev libeigen3-dev liblog4cxx-dev

# libglm-dev doesn't provide cmake config, so we need to compile it from source
git clone https://github.com/g-truc/glm.git
cd glm
mkdir build && cd build
cmake ..
sudo make -j4 install
cd ../..

# clone opencv_contrib for building non-free modules
git clone https://github.com/opencv/opencv_contrib.git

# build and install opencv
git clone https://github.com/opencv/opencv.git
cd opencv 
git checkout 4.1.0
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_EXAMPLES=OFF -DBUILD_opencv_apps=OFF -DBUILD_DOCS=OFF -DBUILD_PERF_TESTS=OFF -DBUILD_TESTS=OFF -DOPENCV_EXTRA_MODULES_PATH=../../opencv_contrib/modules ..
sudo make -j8 install
cd ../..

Installation

Please make sure that Qt5's moc and rcc are in PATH, otherwise, the Qt objects won't compile.

mkdir build && cd build
cmake ..
make install

mapcreator's People

Contributors

kunlin596 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

mapcreator's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.