Code Monkey home page Code Monkey logo

superray's Introduction

SuperRay - High performance method for updating occupancy maps with point clouds

SuperRay is a library for efficiently updating the occupancy map representation with point clouds. The update method based on both super rays and culling region shows high performance without compromising representation accuracy. Our library provides four different types of the occupancy maps - octree, quadtree, grid3D, grid2D - of which the implementations are based on OctoMap library. You can see the technical details of super rays and culling region based updates at here.

BUILD & INSTALL

You can build the SuperRay library by using the CMake in the top-level directory. (The implementation of recent SuperRay library depends on OctoMap 1.9.0.) E.g. for compiling the library, run:

cd SuperRay-master
mkdir build
cd build
cmake ..
make

Binaries and libs will end up in the directories 'bin' and 'lib' of the top-level directory where you started the build.

You can use our library in your project by setting its include directories and lib files manually. But we suggest using the "find_package()" command in CMake as a more convenient way after installing this library. For installing it, run:

cd SuperRay-master
mkdir build
cd build
cmake ..
make install

Then you can link each type of occupancy map through the command of CMake, for example:

find_package(superray_octomap REQUIRED)
find_package(superray_quadmap REQUIRED)
find_package(superray_gridmap3d REQUIRED)
find_package(superray_gridmap2d REQUIRED)

See octomap README for further details and hints on compiling. Authors of OctoMap library describe how to compile the libraries on various platforms and IDEs.

EXAMPLE USING THIS LIBRARY IN ROS

We provide a ROS package that subscribes a pointcloud and updates an occupancy map in real time. Refer the realtime_occupancy_mapping project.

VISUALIZATION

You can visualize the occupancy maps in RViz on ROS. Refer the occupancy_map_visualizer project.

If you have any problem or issue, notice it at here.

License

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.