2017-03-01 07:17:45 -04:00
|
|
|
#pragma once
|
|
|
|
|
2023-04-14 21:58:02 -03:00
|
|
|
#include "AP_VisualOdom_config.h"
|
|
|
|
|
|
|
|
#if AP_VISUALODOM_MAV_ENABLED
|
2017-03-01 07:17:45 -04:00
|
|
|
|
2023-04-14 21:58:02 -03:00
|
|
|
#include "AP_VisualOdom_Backend.h"
|
2020-04-06 00:17:42 -03:00
|
|
|
|
2017-03-01 07:17:45 -04:00
|
|
|
class AP_VisualOdom_MAV : public AP_VisualOdom_Backend
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
// constructor
|
2021-10-29 23:53:51 -03:00
|
|
|
using AP_VisualOdom_Backend::AP_VisualOdom_Backend;
|
2017-03-01 07:17:45 -04:00
|
|
|
|
2023-08-07 01:05:25 -03:00
|
|
|
// consume vision pose estimate data and send to EKF. distances in meters
|
|
|
|
void handle_pose_estimate(uint64_t remote_time_us, uint32_t time_ms, float x, float y, float z, const Quaternion &attitude, float posErr, float angErr, uint8_t reset_counter) override;
|
2020-05-13 05:30:40 -03:00
|
|
|
|
|
|
|
// consume vision velocity estimate data and send to EKF, velocity in NED meters per second
|
|
|
|
void handle_vision_speed_estimate(uint64_t remote_time_us, uint32_t time_ms, const Vector3f &vel, uint8_t reset_counter) override;
|
2017-03-01 07:17:45 -04:00
|
|
|
};
|
2020-04-06 00:17:42 -03:00
|
|
|
|
2023-04-14 21:58:02 -03:00
|
|
|
#endif // AP_VISUALODOM_MAV_ENABLED
|