All Projects → MARSLab-UMN → Mars Vins

MARSLab-UMN / Mars Vins

Licence: other
MARS-VINS binary release repository

Labels

Projects that are alternatives of or similar to Mars Vins

Cmakepchcompiler
CMake precompiled header support via custom PCH compiler extension
Stars: ✭ 105 (-9.48%)
Mutual labels:  cmake
Kepka
Unofficial Telegram Desktop messaging app
Stars: ✭ 109 (-6.03%)
Mutual labels:  cmake
Qhttpengine
HTTP server for Qt applications
Stars: ✭ 112 (-3.45%)
Mutual labels:  cmake
Python cpp example
An example of a hybrid python/C++ package with unit tests
Stars: ✭ 107 (-7.76%)
Mutual labels:  cmake
Kcp Bulild
Unity3D中可靠UDP网络库kcp的各平台动态库构建项目
Stars: ✭ 109 (-6.03%)
Mutual labels:  cmake
Vrt
🔅 Ray tracing library for Vulkan API (indev)
Stars: ✭ 111 (-4.31%)
Mutual labels:  cmake
Sugar
Stars: ✭ 101 (-12.93%)
Mutual labels:  cmake
Kernel Grok
grok the kernel via a cmake shim
Stars: ✭ 114 (-1.72%)
Mutual labels:  cmake
Moderncppci
This is an example of doing a Modern C++ project with CI
Stars: ✭ 109 (-6.03%)
Mutual labels:  cmake
Nrf5 Sdk For Mesh
This repo is a "Release" clone of the zip files available @
Stars: ✭ 112 (-3.45%)
Mutual labels:  cmake
Sdl2 Cmake Modules
Modern CMake modules for finding and using the SDL2 library as well as other related libraries: SDL2_image, SDL2_ttf, SDL2_net, SDL2_mixer and SDL2_gfx. (Targets: SDL2::Core, SDL2::Main, SDL2::Image, SDL2::TTF, SDL2::Net, SDL2::Mixer and SDL2::GFX). Mirror of https://gitlab.com/aminosbh/sdl2-cmake-modules
Stars: ✭ 108 (-6.9%)
Mutual labels:  cmake
Opengl Examples
Modern OpenGL (fixed pipeline free) examples based on http://open.gl
Stars: ✭ 108 (-6.9%)
Mutual labels:  cmake
Mybot ws
URDF model for Gazebo integrated with ROS
Stars: ✭ 111 (-4.31%)
Mutual labels:  cmake
Corrosion
Marrying Rust and CMake - Easy Rust and C/C++ Integration!
Stars: ✭ 106 (-8.62%)
Mutual labels:  cmake
Ros Examples
This repository is home to a collection of ROS nodes that process 3D sensor information from Velodyne LIDAR
Stars: ✭ 113 (-2.59%)
Mutual labels:  cmake
Sh3redux
SILENT HILL 3 Engine Remake in OpenGL and C++
Stars: ✭ 105 (-9.48%)
Mutual labels:  cmake
Kicad Doc
KiCad new documentation repository [moved to https://gitlab.com/kicad]
Stars: ✭ 110 (-5.17%)
Mutual labels:  cmake
Catkin tools
Command line tools for working with catkin
Stars: ✭ 115 (-0.86%)
Mutual labels:  cmake
Sampgdk
Write SA-MP gamemodes in C/C++
Stars: ✭ 113 (-2.59%)
Mutual labels:  cmake
Caveexpress
CaveExpress is a classic 2D platformer with physics-based gameplay and dozens of levels. CavePacker is a Sokoban game.
Stars: ✭ 111 (-4.31%)
Mutual labels:  cmake

MARS-VINS

Copyright, Patent & License Notice

The MARS VINS software is copyrighted by the Regents of the University of Minnesota. Use of the software may be covered by at least US patents and applications 9,243,916, 9,658,07, 14/733,468 and 15/601,261 assigned to Regents of the University of Minnesota. The software can be freely used for educational and research purposes by non-profit institutions and US government agencies only. Other organizations are allowed to use the MARS VINS software only for evaluation purposes, and any further uses will require prior approval from http://z.umn.edu/marsvins. The software may not be sold or redistributed without prior approval. One may make copies of the software for their use provided that the copies, are not sold or distributed, are used under the same terms and conditions.

As unestablished research software, this code is provided on an "as is" basis without warranty of any kind, either expressed or implied. The downloading, or executing any part of this software constitutes an implicit agreement to these terms. These terms and conditions are subject to change at any time without prior notice.

============================================================================

If you want to use this library in your research, please cite:

  1. M. K. Paul, K. Wu, J. Hesch, E. Nerurkar, and S. I. Roumeliotis, “A Comparative Analysis of Tightly-coupled Monocular, Binocular, and Stereo VINS”, International Conference on Robotics and Automation (ICRA), Singapore, May 29-Jun. 3, 2017.

============================================================================

Notes:

  • The desktop version of the code is not optimized, please do not use it for timing comparisons.
  • Both global shutter and rolling shutter cameras are supported.
  • The code currently supports 3 types of camera models: 1) equidistant, 2) fov, and 3) radial-tangential.
  • A sample config file is provided in the "config" folder.
  • The provided generic_driver.cpp and vins_example_app.cpp contatins drivers and example code to run the filter from logged data. Sample datasets are available at: http://mars.cs.umn.edu/research/stereo_vins.php. If you want to try your own datasets or run on with online data, please modify the driver and example app accordingly.
  • For the sample app, the input "imu-path" should contain the path of the IMU file. The IMU file should be formatted as: timestamp (s), gyro measurement (gx, gy, gz), accel measurement (ax, ay, az)
  • The input "image-path" should contain the path of the image folder. The image folder should contain the images in .pgm format and the image names should be in the format m0000000.pgm (e.g., m0000100.pgm). The image folder should also contain a "timestamps.txt" file. The timestamps file should be formatted as:image_name, timestamp (s)
  • The left-right images are expected to the timesynced, hence the corresponding timestamps.txt files should be identical.

============================================================================

Quick Install Instructions

Follow these steps to build an example program on linux (built for Ubuntu 14.04) This program will run stereo vins on a given dataset (see http://mars.cs.umn.edu/research/stereo_vins.php for some example datasets).

cd MARS-VINS
mkdir build
cd build
cmake .. -DPLATFORM=x86 -DCAMERA_MODEL=equidistant
make example_app
make install
./example_app <config file> <output file> <imu data file> <left image directory> <right image directory>

If you get this error error while loading shared libraries: libmars_core.so: cannot open shared object file: No such file or directory, please add the "build" directory to your LD_LIBRARY_PATH.

export LD_LIBRARY_PATH="path-to-build-directory":$LD_LIBRARY_PATH

Custom install

The following options for MARS-VINS are currently available:

Platforms:

  • Linux : Intel-64bit (x86)

  • Linux : ARM-64bit (arm64)

  • Android : ARM-64-bit (arm64)

Camera models:

  • equidistant

  • fov

  • radial_tangential

example_app can be compiled for any of the above combinations in the following fashion.

For linux builds:

cd MARS-VINS
cd build
cmake -DPLATFORM=<x86 or arm64> -DCAMERA_MODEL=<equidistant or fov or  or radial_tangential> ..
make example_app
make install
./example_app <config file> <output file> <imu data file> <left image directory> <right image directory>

For android builds (adb required to interface with android, android device should be rooted):

cd MARS-VINS
cd build_android
## edit cmake_android.sh to select your camera model
sh cmake_android.sh
make example_app
make install
adb push ./example_app <directory on android device>
adb shell
cd <directory on android device>
./example_app <config file> <output file> <imu data file> <left image directory> <right image directory>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].