From 3480efbcbe60630050e0045cd75a194e6d88acb8 Mon Sep 17 00:00:00 2001 From: ChristophTobler Date: Wed, 11 Apr 2018 14:00:05 +0200 Subject: [PATCH] first draft of obstacle representation proposal --- text/0005-obstacle-representation.md | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 text/0005-obstacle-representation.md diff --git a/text/0005-obstacle-representation.md b/text/0005-obstacle-representation.md new file mode 100644 index 0000000..2f56036 --- /dev/null +++ b/text/0005-obstacle-representation.md @@ -0,0 +1,32 @@ +* Start date: 2018-04-11 +* Contributors: Dennis Mannhart , Martina Rivizzigno , Christoph Tobler +* Related PR: [avoidance msg](https://github.com/mavlink/mavlink/pull/856#issuecomment-371438983) + +# Summary + +A general message that provides information about obstacles that are close to the vehicle. Any avoidance- or sensor-module can use this message to send information about obstacles to the autopilot or get information from the autopilot. + +# Motivation + +Scenarios where this could be useful: + +* In the future, the autopilot will have an internal obstacle avoidance that runs after the external avoidance. That means that this internal avoidance needs to have some sort of information about obstacles close-by. +* Trajectory planning/smoothing can use this information to avoid obstacles +* Geofence could use the same representation. +* Sensors attached to the autopilot can provide information for companion computers. +* Sensor drivers could provide this message directly to the autopilot for basic avoidance without having a complex avoidance module. + +# Detailed Design + +2D/3D PCA as obstacle representation +TBD + +# Alternatives + +* Polygons +* Voxels + +# Unresolved Questions + +# References +* [PCA Wikipedia](https://en.wikipedia.org/wiki/Principal_component_analysis)