Skip to content
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
12 changes: 12 additions & 0 deletions dev_msgs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,18 @@ message ObjectArray

}

// Image captured by a circular camera
// Message contains pixel information: colour and distance to detected object
message CircularCameraImage
{
// Message header.
optional Header header = 1;
// Distances at square (array of size pixel count)
repeated float zbuffer = 2;
// Image (array of size pixel count)
repeated Color image = 3;
}

// Airflow properties
// Message containing the airflow intensity (in percentage of maximum actuator value)
// Intended as actuator setpoint.
Expand Down