#lidar #data #agent #2d #binary-data #sensors #smoothing

bin+lib tether-lidar2d-consolidation

Tether Lidar2D Consolidator Agent, Rust edition

13 unstable releases (5 breaking)

new 0.8.2 Dec 4, 2024
0.8.1 Nov 29, 2024
0.7.0 Nov 27, 2024
0.6.2 Oct 22, 2024
0.3.3 Nov 7, 2023

#662 in Hardware support

Download history 4/week @ 2024-09-28 400/week @ 2024-10-19 42/week @ 2024-10-26 275/week @ 2024-11-23 234/week @ 2024-11-30

510 downloads per month

MIT license

120KB
2.5K SLoC

Tether Lidar2D Consolidator, in Rust

This is a Tether agent which combines scan data from one or more 2D LIDAR sensors and produces smooth tracking output.

Easy install via Cargo

Since v0.3.1, you can install the binary via Cargo, ie.:

cargo install tether-lidar2d-consolidation

...and then run:

lidar2d-backend
lidar2d-frontend

Command-line configuration

For the boath executables, you can see a full list of available command-line arguments by appending --help onto your executing command, e.g. lidar2d-backend --help (installed) or cargo run --bin lidar2d-backend -- --help (development)

Dev dependencies

If you are compiling on your own system, Paho Eclipse MQTT has some (non-Rust) dependencies of its own. On Mac, you might need to the following:

brew install openssh cmake

And on Linux:

sudo apt install libssl-dev build-essential cmake

Expected Output

Plugs:

  • "trackedPoints": an array of 2D vectors (arrays with [x,y]) for transformed but not-smoothed points within the tracking region (ROI)
  • "smoothedTrackedPoints:" an array of objects with "id", "x", y" and "velocity" (2D vector) for each smoothed point
  • "smoothedRemappedPoints": exactly as per "smoothedTrackedPoints", but respecting the Origin Location setting, if applied

Notes on Libraries

MQTT Client

Initially we tried using mqtt-rs, as it seems relatively simple to use, but in the future mqttrs might be "better".

For now have settled on paho-mqtt since it seems well-supported and provides examples in realistic scenarios (especially async).

MessagePack encoding/decoding

rmp_serde is useful for both JSON and MsgPack serialisation/deserialisation. We might not be taking full advantage of zero-copy operations everywhere, but this will take a little more time to figure out.

In the beginning we tried msgpack-simple which warns that it is "not as performant as static solutions" but was much easier to use as a starting point.

Clustering

We tried the library kddbscan, but although this may well be more "accurate" it seems to run far too slowly. In any case, this is a very different algorithm from the DBSCAN used in the OG Agent.

We then settled for the more humble (but apparently much more performant) petal-clustering. This in turn requires something called ndarray which seems very similar (and likely based on) numpy for Python.

For now, we use the DBSCAN method as per the OG Agent, but in future it might be worth tested the other supported mode in this library, HDbscan which may be faster still (see the paper).

Another possibility might be the library linfa-clustering.

JSON serialisation / deserialisation

We are using a combination of the libraries serde and serde_json which makes it easy to handle JSON in various ways - including strongly typed corresponding to Rust types/structs, which is what we need here in the case of our Config loading/saving.

Perspective transformation

We are attempting to do a "quad to quad projection" from the ROI to a normalised "square" output quad, similar to perspective-transform as per the OG Agent.

So far

Finally, used a combination of ndarray (which was already installed, to support the clustering calculations) and nalgebra.

Logging

We are using log and env-logger. Log level has been set to INFO by default, but can be overridden, for example by prefixing with an environment variable, e.g.

RUST_LOG=debug cargo run

Command-line configuration

We are using clap which does command-line argument parsing only (no use of files, environment variables, etc.)

Something like more-config could be useful, since it includes functionality similar to the rc package for NodeJS.

Some differences from OG version

  • There is no requestLlidarConfig Plug any more; the retain feature of MQTT is used to provide a persistent and up-to-date config for all clients
  • Smoothing is incorporated into this Agent; there is no need to run a separate tether-tracking-smooth agent any more
  • Zones for "presence detection" can be set up within this Agent

Useful resources

Dependencies

~34–51MB
~1M SLoC