You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
477 B
18 lines
477 B
#pragma once |
|
|
|
#include "AP_VisualOdom_Backend.h" |
|
|
|
#if HAL_VISUALODOM_ENABLED |
|
|
|
class AP_VisualOdom_MAV : public AP_VisualOdom_Backend |
|
{ |
|
|
|
public: |
|
// constructor |
|
AP_VisualOdom_MAV(AP_VisualOdom &frontend); |
|
|
|
// consume vision position estimate data and send to EKF. distances in meters |
|
void handle_vision_position_estimate(uint64_t remote_time_us, uint32_t time_ms, float x, float y, float z, const Quaternion &attitude, uint8_t reset_counter) override; |
|
}; |
|
|
|
#endif
|
|
|