Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

obstacle representation proposal #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions text/0005-obstacle-representation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
* Start date: 2018-04-11
* Contributors: Dennis Mannhart <[email protected]>, Martina Rivizzigno <[email protected]>, Christoph Tobler <[email protected]>
* 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)