Thanks to visit codestin.com
Credit goes to github.com

Skip to content

This is the code implementation for the paper UAV Tracking with Solid-State Lidars: Dynamic Multi-Frequency Scan Integration.

License

Notifications You must be signed in to change notification settings

IacopomC/dynamic_scan_tracking

Repository files navigation

UAV Tracking with Solid-State Lidars: Dynamic Multi-Frequency Scan Integration



Project Page   •   Paper   •   Contact Us

This is the code implementation for the paper UAV Tracking with Solid-State Lidars: Dynamic Multi-Frequency Scan Integration.


Install

The code has been tested on Ubuntu 20.04 with ROS Noetic

Dependencies

Note: The drone detection requires the point cloud to be in PointCloud2 format while the tracking uses the Livox CustomMsg data type. For the conversion use this repository and follow the instructions. If you use a different repository, change the value for the self.lidar_sub variable in the livox_to_img.py file accordingly.

Build

cd ~/catkin_ws/src

git clone https://github.com/IacopomC/dynamic_scan_tracking

cd ~/catkin_ws

catkin build dynamic_scan_tracking

source devel/setup.bash

Quick Start

1. Basic Tracking (Manual Initial Position)

# Terminal 1: Launch the tracking system
roslaunch dynamic_scan_tracking dynamic_scan_tracking.launch

# Terminal 2: Start your LiDAR driver (example for Livox)
roslaunch livox_ros_driver livox_lidar_msg.launch

# The system will start tracking from the configured initial position

Configuration

Motion Model Selection

Edit config/dynamic_scan_tracking.yaml:

kalman_filter:
  motion_model:
    type: "adaptive"  # Options: "cv", "ctrv", "adaptive"
  • "adaptive": Automatically handles both straight flight and turns
  • "cv": Best for straight-line motion, fastest computation
  • "ctrv": Best for circular motion with known turn rate

Key Parameters

  • Tracking accuracy: Adjust search_radius (0.1-0.5m)
  • Motion agility: Adjust process_noise.noise_a (1.0-5.0)
  • LiDAR noise: Adjust measurement_noise values (0.05-0.2m)

See TECHNICAL_DOCUMENTATION.md for detailed parameter explanations.

Monitoring

ROS Topics

  • /dynamic_scan_tracking/object_pose: Current target pose
  • /dynamic_scan_tracking/object_velocity: Current target velocity
  • /dynamic_scan_tracking/target_pcl: Tracked point cloud (visualization)

Documentation

Citation

If you use this code for any academic work, please cite the following publication:

@inproceedings{catalano2023uav,
  title={Uav tracking with solid-state lidars: dynamic multi-frequency scan integration},
  author={Catalano, Iacopo and Sier, Ha and Yu, Xianjia and Westerlund, Tomi and Queralta, Jorge Pena},
  booktitle={2023 21st International Conference on Advanced Robotics (ICAR)},
  pages={417--424},
  year={2023},
  organization={IEEE}
}

About

This is the code implementation for the paper UAV Tracking with Solid-State Lidars: Dynamic Multi-Frequency Scan Integration.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published