mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-07-24 15:27:41 +08:00
feat(new_module): Static and moving vision-based target esitmator (Kalman Filter) (#23726)
Co-authored-by: jonas <jonas.perolini@rigi.tech>
This commit is contained in:
@@ -35,4 +35,7 @@ param set-default PLD_HACC_RAD 0.1
|
||||
param set-default RTL_PLD_MD 2
|
||||
|
||||
# Start up Landing Target Estimator module
|
||||
landing_target_estimator start
|
||||
if param compare VTE_EN 0
|
||||
then
|
||||
landing_target_estimator start
|
||||
fi
|
||||
|
||||
@@ -25,6 +25,15 @@ then
|
||||
mc_autotune_attitude_control start
|
||||
fi
|
||||
|
||||
#
|
||||
# Start Vision Target Estimator.
|
||||
#
|
||||
|
||||
if param greater -s VTE_EN 0
|
||||
then
|
||||
vision_target_estimator start
|
||||
fi
|
||||
|
||||
#
|
||||
# Start Multicopter Position Controller.
|
||||
#
|
||||
|
||||
@@ -25,6 +25,15 @@ then
|
||||
mc_autotune_attitude_control start
|
||||
fi
|
||||
|
||||
#
|
||||
# Start Vision Target Estimator.
|
||||
#
|
||||
|
||||
if param greater -s VTE_EN 0
|
||||
then
|
||||
vision_target_estimator start
|
||||
fi
|
||||
|
||||
fw_rate_control start vtol
|
||||
fw_att_control start vtol
|
||||
fw_mode_manager start
|
||||
|
||||
Reference in New Issue
Block a user