mirror of
https://github.com/ArduPilot/ardupilot.git
synced 2026-09-26 12:48:12 +08:00
AP_VisualOdom: explain newly added vel_err parameter
This commit is contained in:
committed by
Peter Barker
parent
745a0d05a7
commit
0ea404971f
@@ -104,6 +104,7 @@ public:
|
||||
// general purpose methods to consume velocity estimate data and send to EKF
|
||||
// velocity in NED meters per second
|
||||
// quality of -1 means failed, 0 means unknown, 1 is worst, 100 is best
|
||||
// vel_err is the velocity error (m/s), 0 means unknown
|
||||
void handle_vision_speed_estimate(uint64_t remote_time_us, uint32_t time_ms, const Vector3f &vel, float vel_err, uint8_t reset_counter, int8_t quality);
|
||||
|
||||
// request sensor's yaw be aligned with vehicle's AHRS/EKF attitude
|
||||
|
||||
@@ -19,6 +19,7 @@ public:
|
||||
|
||||
// consume vision velocity estimate data and send to EKF, velocity in NED meters per second
|
||||
// quality of -1 means failed, 0 means unknown, 1 is worst, 100 is best
|
||||
// vel_err is the velocity error (m/s); VEL_M_NSE is used if 0 is provided.
|
||||
void handle_vision_speed_estimate(uint64_t remote_time_us, uint32_t time_ms, const Vector3f &vel, float vel_err, uint8_t reset_counter, int8_t quality) override;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user