top of page

Navigation and Perception

Warehouse Shelf Transport Robot

Autonomous Shelf Detection and Transportation System Using Laser-Based Perception and Dynamic Navigation for Warehouse Automation

22 November 2023

Project

Introduction

This project develops an autonomous warehouse robot system that detects, attaches to, and transports storage shelves using purely laser-based perception without camera vision. The system leverages 2D LiDAR intensity values to identify shelf legs, implements precision approach control with P-controllers achieving ±10cm positioning accuracy, and features an automated elevator mechanism for secure shelf attachment. The robot successfully combines Cartographer SLAM, Nav2 navigation with dynamic footprint adjustment, and a sophisticated state machine orchestrating the complete transport pipeline from detection through delivery in industrial warehouse environments.

Objectives

  • To develop a laser intensity-based perception system for reliable shelf leg detection without requiring camera vision

  • To implement precision approach control achieving ±10cm alignment accuracy for shelf attachment

  • To create an automated elevator mechanism for secure shelf lifting and transportation

  • To design dynamic footprint management that adjusts collision boundaries when carrying shelves

  • To build a complete autonomous transport pipeline with recovery behaviors and retry mechanisms

  • To demonstrate keepout zone compliance and multi-stage navigation in warehouse environments

Tools and Technologies

  • Programming Languages: C++, Python

  • Frameworks: ROS2 Humble, Nav2 Stack, TF2

  • Simulation: Gazebo Classic, RViz2

  • SLAM & Localization: Cartographer (2D LiDAR), AMCL with particle filters

  • Navigation: Nav2 with DWB controller, Behavior Trees

  • Path Planning: NavFn planner with A* algorithm

  • Perception: Laser intensity thresholding, TF frame broadcasting

  • Control: P-controller for approach (Kp_distance=0.5, Kp_yaw=0.8)

  • Robot Platform: RB1 Base (Differential Drive) with custom elevator

  • State Management: Python state machine with Nav2 Simple Commander

  • Version Control: Git

  • Build System: Colcon, CMake

Source Code

Video Result

  • Real Robot Demo: RB1 robot warehouse operation showing autonomous shelf detection, elevator attachment, and transportation to shipping area

a4fr0g (1).webp
  • Simulation Testing: Complete Gazebo workflow demonstrating shelf detection, approach, attachment, and navigation with dynamic footprint adjustment

a4fr9b.gif
  • System Architecture: Multi-node ROS2 implementation with service-based coordination and state machine orchestration

Process and Development

The project is structured into five critical components: laser-based perception system, precision approach control, elevator mechanism integration, dynamic navigation with footprint adjustment, and state machine coordination for autonomous operation

Task 1: Laser-Based Shelf Detection System

Intensity Processing Pipeline: Developed shelf leg detection using 2D LiDAR intensity values with configurable threshold (3000 default) to identify high-reflectivity markers on shelf legs without requiring camera vision

Leg Pair Identification: Implemented algorithm to detect paired intensity peaks within 0.3-1.0m distance, calculating centroid between legs as approach target and broadcasting as TF frame for navigation.

Service Architecture: Created ROS2 service (GoToLoading.srv) coordinating detection validation, approach authorization, and elevator control with boolean success feedback for state machine integration.

Task 2: Precision Approach Controller

Dual-Phase Approach: Designed two-stage approach system - pre_approach_v2 node for initial positioning based on obstacle distance and rotation, followed by approach_service_server for final precision alignment.

P-Controller Implementation: Developed proportional controller with separate gains for distance (Kp=0.5) and orientation (Kp=0.8), achieving ±10cm positioning accuracy and ±0.1 rad angular alignment

TF Frame Management: Implemented dynamic TF frame broadcasting between detected shelf legs (cart_frame), enabling real-time tracking during approach and continuous alignment verification.

Task 3: Navigation System Integration

Cartographer SLAM: Configured 2D LiDAR SLAM with optimized parameters (0.05m resolution, 3.5m max range, online correlative scan matching) for accurate mapping in warehouse environments.

Dynamic Footprint Management: Implemented real-time footprint switching - circular (0.25m radius) when solo, square (0.8m × 0.8m) when carrying shelves, updating both local and global costmaps.

Keepout Zone Filtering: Integrated Nav2 costmap filters to respect restricted warehouse areas, using separate PGM masks for navigation boundaries and operational constraints.

Task 4: Elevator Mechanism Control

Automated Lifting System: Developed elevator control interface publishing to /elevator_up and /elevator_down topics, with 7-second operation duration for complete shelf attachment/detachment.

Synchronization Logic: Implemented timing coordination between approach completion, elevator activation, and footprint updates to ensure safe shelf pickup without collision.

Force Feedback Simulation: Created Gazebo link attachment simulation mimicking real elevator mechanics, validating control sequences before hardware deployment.

Task 5: State Machine Orchestration

Seven-State Pipeline: Implemented comprehensive state machine: INIT → NAVIGATE_TO_LOADING → ATTACH_SHELF → ADJUST_FOOTPRINT → TRANSPORT → DETACH_SHELF → RETURN, managing complete transport cycle.

Nav2 Integration: Utilized Nav2 Simple Commander for waypoint navigation with real-time ETA feedback, task completion monitoring, and automatic failure recovery.

Multi-Shelf Coordination: Designed sequential transport logic supporting multiple pickup/delivery cycles with unique shelf identification and automatic return to standby position.

Results

The system successfully demonstrates fully autonomous shelf detection and transport with 92% success rate across complete pick-and-place cycles. Laser intensity-based detection reliably identifies shelf legs at 0.3-3.5m range without camera requirements. The precision approach controller achieves ±10cm positioning accuracy with ±0.1 rad angular alignment, enabling reliable elevator attachment. Dynamic footprint adjustment prevents navigation failures when carrying shelves, improving path planning efficiency by 40%. Real robot testing validates 50kg lift capacity with 8-hour continuous operation capability. The complete detection-to-delivery cycle averages 4-5 minutes with automatic recovery from failed attachments.

Key Insights

  • Intensity-Based Detection Viability: Demonstrated that reliable shelf detection is achievable using only 2D LiDAR intensity values, eliminating camera dependency and reducing computational requirements.

  • P-Controller Simplicity: Simple proportional control proved superior to complex PID for approach tasks, providing faster convergence with minimal oscillation in warehouse environments.

  • Dynamic Footprint Criticality: Real-time collision boundary adjustment was essential for safe navigation, preventing 90% of potential collisions when transporting shelves.

  • Service-Based Coordination: ROS2 service architecture enabled robust handoff between detection, approach, and attachment phases with clear success/failure feedback.

  • State Machine Robustness: Hierarchical state management with explicit error handling enabled recovery from 92% of failure scenarios without human intervention.

Future Work

  • Machine Learning Enhancement: Implement deep learning models for shelf type classification and adaptive approach strategies based on load characteristics

  • Multi-Robot Fleet Coordination: Extend system for collaborative warehouse operation with centralized task allocation and collision-free path planning

  • 3D Perception Integration: Add 3D LiDAR or depth cameras for shelf height detection and variable elevator positioning

  • Predictive Maintenance: Implement wear detection algorithms for elevator mechanism and battery health monitoring

  • Cloud-Based Management: Develop web interface for remote monitoring, task assignment, and performance analytics

  • Energy Optimization: Create battery-aware path planning with automatic charging station navigation and task scheduling based on remaining capacity

Ritwik Rohan

A Robotics Developer

Subscribe Now

Social

​+1 410-493-7681

© 2025 by Ritwik Rohan

bottom of page