123456789101112131415161718192021222324252627282930313233343536373839 |
- #pragma once
- #include <AP_Common/AP_Common.h>
- #include <AP_HAL/AP_HAL.h>
- #include "AP_VisualOdom.h"
- class AP_VisualOdom_Backend
- {
- public:
-
- AP_VisualOdom_Backend(AP_VisualOdom &frontend);
-
- virtual void handle_msg(const mavlink_message_t &msg) {};
- protected:
-
- void set_deltas(const Vector3f &angle_delta, const Vector3f& position_delta, uint64_t time_delta_usec, float confidence);
- private:
-
- AP_VisualOdom &_frontend;
- };
|