Projects / Rover Perception & Tracking

Rover Perception & Tracking

YOLO detection wired into the ROS 2 Humble nav stack.

Role
Software Subsystem Lead — perception and integration
Period
Aug 2025 — Present
Domain
Robotics · Computer Vision
01 /

Problem

An autonomous rover needed to detect and track objects reliably enough for the ROS 2 navigation stack to act on, using a camera and a 3D depth sensor that did not agree with each other about where anything was.

What was the rover being built for — a competition, a field task? State what the perception stack had to deliver for the mission to succeed.

02 /

Constraints

  • Coordinate frame driftcamera and depth sensor reported different positions for the same object, so detections could not be trusted downstream.
  • ROS 2 Humble contractoutput had to fit the existing nav stack's topics and message types rather than define its own.
  • Hand-labelled datathe training set was annotated in Label Studio and trained in Colab, so dataset size was bounded by available labelling time.

Add the hardware — which camera, which depth sensor, what compute is on the rover — and the real-time rate the nav stack expected.

03 /

Architecture

ArUco markers provide a shared reference both sensors can see, letting the camera and depth streams be resolved into one coordinate frame before detections are published to the nav stack.

Draw the ROS 2 node graph — nodes, topics and message types. This is the diagram an interviewer will ask you to walk through.

04 /

Key Decisions

Why ArUco markers for the sync rather than extrinsic calibration or an ICP-style alignment? Why YOLO over a classical detector, given the compute budget? Name what you rejected.

05 /

Measured Outcome

Multi-sensor sync via ArUco markers and 3D depth eliminated the coordinate frame drift, and the detector was integrated with the ROS 2 Humble navigation stack.

This is the one section holding the project back — it currently has no numbers. Detection mAP, tracking rate in Hz, drift before and after in centimetres: any one measured figure here would put this project on the same footing as the lane follower.

06 /

What I'd Improve Next

What breaks first — lighting, distance, motion blur, marker occlusion? Naming a known limitation reads as engineering judgement, not weakness.