SLAM Algorithms Implementation for AR Navigation in Mobile App

BLACKSPARC.TECH is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1735 services
SLAM Algorithms Implementation for AR Navigation in Mobile App
Complex
from 2 weeks to 3 months
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    792
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    671
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1097
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    969
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    914
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    495

SLAM Algorithm Implementation for AR Navigation in Mobile Applications

SLAM (Simultaneous Localization and Mapping) is what ARKit and ARCore do "under the hood". The system simultaneously builds a map of unknown space and determines its own position within that map. When ARKit "loses tracking"—it lost SLAM map consistency. When you need an AR app with more precise, robust, or specialized navigation than standard ARKit/ARCore provides—implement custom SLAM or extend existing.

Why Standard ARKit Falls Short

ARKit implements Visual-Inertial Odometry (VIO): feature points from camera + IMU data. Works excellently in well-lit spaces with rich texture. Fails in:

  • Dynamic scenes: people moving, creating "false" feature points, system confuses
  • Monochrome surfaces: long white corridor—feature points have nothing to anchor, drift grows
  • Large spaces: 200+ meters, accumulated VIO error becomes unacceptable
  • Low-light conditions: night warehouses, dark corridors

These scenarios need either additional sensors or custom algorithms atop standard framework.

Main Mobile AR SLAM Options

ORB-SLAM3 on mobile. Open-source implementation, supports monocular, stereo, RGB-D. Compile via CMake for iOS (Metal) / Android (via NDK). Performance: iPhone 13 Pro—roughly 25–30 FPS with full tracking, on acceptable boundary for AR. Requires C++ bridging: ObjectiveC++ wrapper for iOS, JNI for Android. Use when you need algorithm control and standard ARKit is insufficient for precision.

ARKit + Core Location fusion. For outdoor/large-scale indoor: integrate GPS (CLLocationManager), compass, barometer with ARKit tracking via Extended Kalman Filter. Corrects drift every N meters when GPS available. Implement filter in C++ via Eigen or Swift via Accelerate framework.

LiDAR + IMU SLAM (iOS). ARWorldTrackingConfiguration with sceneReconstruction gives depth data from LiDAR. Combination depth + RGB + IMU—this is RGB-D SLAM. For precise indoor navigation: build dense map from ARMeshAnchor, use ICP (Iterative Closest Point) for loop closure when returning to visited zones.

Loop Closure—Key to Accuracy

Main problem for any VIO without loop closure: user walks around hall in a circle returning to start, but SLAM thinks start and finish are different places. Drift accumulated. Loop closure detects return to familiar place (via feature descriptors—ORB, SIFT, SuperPoint) and "closes the loop", correcting entire map.

In ARKit loop closure happens automatically via relocalization—if tracking was lost and recovered at a known place. For custom systems, implement bag-of-words approach (DBoW2, FBoW) for fast similar keyframe search.

Practical Case

For 8,000 sq. m warehouse, built AR navigation for order pickers. Standard ARCore lost tracking on monochrome shelves after 40–60 seconds. Solution: grid of ArUco markers every 15 m as relocalization anchors + PDR between markers via Android Step Counter API. Positioning accuracy—0.5–1.5 m, sufficient for identifying specific shelf. System works offline without server—marker map embedded in app, updated on layout changes via internal CMS.

What's Included

  • Operating conditions analysis and SLAM architecture selection
  • SLAM algorithm implementation or integration (ORB-SLAM3, OpenVSLAM, custom)
  • Fusion with additional sensors (GPS, UWB, barometer)
  • Tune tracking parameters for specific environment
  • Accuracy metrics: ATE (Absolute Trajectory Error), RPE (Relative Pose Error)

Timeline: ready SLAM SDK integration with customization—4–8 weeks. Custom SLAM module from scratch + tune for environment—3–6 months. Cost individual.