Skip to content

Commit 1306b47

Browse files
authored
Merge pull request #5 from microROS/embedded_tf_subpage
Embedded tf subpage
2 parents be163b3 + 4ba2e4d commit 1306b47

2 files changed

Lines changed: 51 additions & 1 deletion

File tree

embedded_tf/index.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Embedded TF
2+
3+
Table of contents
4+
5+
- [Introduction and Goal](#introduction-and-goal)
6+
- [Requirements](#requirements)
7+
- [Design](#design)
8+
- [Implementation of tf2_filter](#implementation-of-tf2filter)
9+
- [Roadmap](#roadmap)
10+
- [Acknowledgments](#acknowledgments)
11+
12+
13+
## Introduction and Goal
14+
15+
The TF transform graph, with its support for both a temporal history, and distributed information sources, has been a novel tool for robotics frameworks when it was released in 2008. Functionally, it is based in scene graph concepts known from computer graphics [[Foote 2013]](https://ieeexplore.ieee.org/document/6556373), but these only rarely offer distribution, and did not offer temporal histories at all (mainly, because this is not needed for frame-based rendering applications like in computer graphics). Distributed scene graphs have become more widely available also in computer graphics. In robotics, work by de Laet et al. [[De Laet et al. 2013]](https://ieeexplore.ieee.org/document/6696693) has extended transforms graphs to also contain twist (i.e., angular motion) information, and to provide more compile-time error checking. This is currently not integrated with distribution mechanisms, but could be used on a single system.
16+
One persistent issue with transform graphs has been their resource use. ROS TF works through replicated copies of the entire transform tree at every node that uses it, and is implemented through unicast TCP connections between nodes. In systems with many dynamic parts, this has sometimes been called the ``TF firehose``, because of the large stream of incoming messages.
17+
micro-ROS will go beyond this state of the art by running the dynamic transform tree in an embedded device, while keeping resource use to a minimum based on an analysis of the spatial and temporal details actually necessary. Further, enabling real-time queries even in the face of concurrent updates through integration will be realized through integration with the microROS real-time executor. It is also planned to integrate the embedded TF will with the node lifecycle to achieve further power-savings
18+
19+
20+
## Requirements
21+
22+
Embedded TF requirements are documented at: [github.com/microROS/geometry2/blob/ros2/tf2_filter/docs/requirements.md](https://github.com/microROS/geometry2/blob/ros2/tf2_filter/docs/requirements.md).
23+
24+
25+
## Design
26+
27+
The Embedded TF design is documented at: [github.com/microROS/geometry2/blob/ros2/tf2_filter/docs/design.md](https://github.com/microROS/geometry2/blob/ros2/tf2_filter/docs/design.md).
28+
29+
30+
## Implementation of tf2_filter
31+
32+
Implementation of tf2_filter for ROS2 and micro-ROS can be found at: [github.com/microROS/geometry2/blob/ros2/tf2_filter/](https://github.com/microROS/geometry2/blob/ros2/tf2_filter/).
33+
34+
35+
## Roadmap
36+
37+
**2018**
38+
* Static filter approach in the agent allowing to specify the parts of the kinematic chain that are relevant for an application component on micro-ROS.
39+
40+
**2019**
41+
* Design and implement an embedded TF implementation which is integrated with the real-time executor in a way that removes the need for costly synchronization primitives.
42+
43+
**2020**
44+
* Design and implement an API extension, as well as a reference implementation for custom transform representations that increase run-time efficiency.
45+
46+
47+
## Acknowledgments
48+
49+
This activity has received funding from the European Research Council (ERC) under the European Union's Horizon 2020 research and innovation programme (grant agreement n° 780785).

index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ We'll update this README as we proceed. For now, you can check out our work on:
1717
- Real-Time Operating System: [https://github.com/microROS/NuttX](https://github.com/microROS/NuttX)
1818
- Micro-ROS in RTOS example applications: [apps](https://github.com/microROS/apps)
1919
- Predictable scheduling and execution: [real-time_executor](real-time_executor/)
20-
- System modes and system hierarchy: [system-modes](system_modes/)
20+
- System modes and system hierarchy: [system_modes](system_modes/)
21+
- Embedded transform (tf) library: [embedded_tf](embedded_tf/)
2122
- Reference hardware: [https://github.com/microROS/hardware](https://github.com/microROS/hardware)
2223
- Build infrastructure for embedded development using docker: [https://github.com/microROS/docker](https://github.com/microROS/docker)
2324

0 commit comments

Comments
 (0)