All Projects → muziyongshixin → Orb Slam2 Based Ar On Android

muziyongshixin / Orb Slam2 Based Ar On Android

This is a Android Augmented Reality APP based on ORB-SLAM2 and OpenGL,which can work well on both outdoor and indoor environments

Projects that are alternatives of or similar to Orb Slam2 Based Ar On Android

Polymer
🎨 graphics + interaction engine
Stars: ✭ 243 (+127.1%)
Mutual labels:  opengl, ar
Pangolin
Python binding of 3D visualization library Pangolin
Stars: ✭ 157 (+46.73%)
Mutual labels:  slam, opengl
Suma
Surfel-based Mapping for 3d Laser Range Data (SuMa)
Stars: ✭ 314 (+193.46%)
Mutual labels:  slam, opengl
Physics3d
A 3D physics engine
Stars: ✭ 101 (-5.61%)
Mutual labels:  opengl
Rtabmap
RTAB-Map library and standalone application
Stars: ✭ 1,376 (+1185.98%)
Mutual labels:  slam
Gdx Vfx
LibGDX post-processing visual effects
Stars: ✭ 105 (-1.87%)
Mutual labels:  opengl
Slide
Slide is an open sourced, ad free Reddit browser for Android
Stars: ✭ 1,619 (+1413.08%)
Mutual labels:  app
Eao Slam
[IROS 2020] EAO-SLAM: Monocular Semi-Dense Object SLAM Based on Ensemble Data Association
Stars: ✭ 95 (-11.21%)
Mutual labels:  slam
Voxelman
Plugin-based client-server voxel game engine written in D language
Stars: ✭ 105 (-1.87%)
Mutual labels:  opengl
Comic Mtc
🔥漫画App,适合新手进阶项目。MVP + RxJava + Retrofit + Dagger2+rxlifecycle ,一起学习交流 0v0!
Stars: ✭ 102 (-4.67%)
Mutual labels:  app
Clapper
A GNOME media player built using GJS with GTK4 toolkit and powered by GStreamer with OpenGL rendering.
Stars: ✭ 103 (-3.74%)
Mutual labels:  opengl
Minimal Notes
Minimal Notes web app build with Vue.js
Stars: ✭ 102 (-4.67%)
Mutual labels:  app
Vkgl
Core OpenGL over Vulkan
Stars: ✭ 105 (-1.87%)
Mutual labels:  opengl
Evo
Python package for the evaluation of odometry and SLAM
Stars: ✭ 1,373 (+1183.18%)
Mutual labels:  slam
Door Slam
Distributed, Online, and Outlier Resilient SLAM for Robotic Teams
Stars: ✭ 107 (+0%)
Mutual labels:  slam
Xque
[WIP] (unofficial) an yuque app that builded by flutter
Stars: ✭ 101 (-5.61%)
Mutual labels:  app
Sh3redux
SILENT HILL 3 Engine Remake in OpenGL and C++
Stars: ✭ 105 (-1.87%)
Mutual labels:  opengl
Flutter medical
Functioning Doctor/Healthcare Catalog App created using Dart with Flutter. Stores and loads data from Firebase Firestore DB.
Stars: ✭ 99 (-7.48%)
Mutual labels:  app
Tinyraycaster
486 lines of C++: old-school FPS in a weekend
Stars: ✭ 1,383 (+1192.52%)
Mutual labels:  opengl
Turtlebot3 simulations
Simulations for TurtleBot3
Stars: ✭ 104 (-2.8%)
Mutual labels:  slam

ORB-SLAM2-based-AR-on-Android

Introduction

This is a Android Augmented Reality APP based on ORB-SLAM2 and OpenGL. The demo video can be found in the links below.

demo videos

ORB-SLAM2   ORB-SLAM2   ORB-SLAM2

Dependencies & Installation & Usage

To run this APP you need to copy the ./SLAM folder into your mobile phones, which contains the vocabulary file(ORBvoc.bin) and camera Calibration file(mi6.yaml). Then you need to change the 20th row in the ./app/src/main/cpp/native-lib.cpp to configure the correct path in your phone. You may also need to calibrate your phone's camera for better performance. More details of camera calibration can be found on google.

ORB_SLAM2::System SLAM("/storage/emulated/0/SLAM/VOC/ORBvoc.bin","/storage/emulated/0/SLAM/Calibration/mi6.yaml",ORB_SLAM2::System::MONOCULAR,false);

Due to the project is based on ORB-SLAM2, OpenCV4Androi is needed. Other third part dependence like g2o, Eigen, DBoW2 are all included in the project. As for the IDE, Android studio 2.5 or higher version is recommended.

To compile the project you may need to edit some configurations in the CMakeLists.txt file, which is in the path /app/CMakeLists.txt

Due to the diversity of Android system version, I am not sure weather my configuration can work well on other Android devices. So you may also need to change some configurarions in the AndroidManifest.xml to make sure that the app have the authority to use the camera and file system.

Framework & Results

The system is consisted of two parts, the ORB-SLAM2 part is ported from FireStoneYS' profile, which is used to get the camera's pose matrix. The other part is the OpenGL Rendering module, which use the pose matrix to render the 3D object(the earth in this project).

The ORB-SLAM2 system requires lots of computing resources, So this APP can only achieve nearly 10 fps on the MI6 with a snapdragon 835 CPU.

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].