From 4434d8e864873d8892f9deef4d0432c9f287098d Mon Sep 17 00:00:00 2001 From: Ethan <jiaao@student.unimelb.edu.au> Date: Tue, 21 May 2024 12:35:51 +0800 Subject: [PATCH] covariance --- catkin_ws/src/asclinic_pkg/src/Kalman.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/catkin_ws/src/asclinic_pkg/src/Kalman.cpp b/catkin_ws/src/asclinic_pkg/src/Kalman.cpp index ac56b73d..f5b3ccf4 100644 --- a/catkin_ws/src/asclinic_pkg/src/Kalman.cpp +++ b/catkin_ws/src/asclinic_pkg/src/Kalman.cpp @@ -227,9 +227,9 @@ int main(int argc, char **argv) { 1, 1, 1, 1, 1, 1; - z_cov << 5, 5, 5, - 5, 5, 5, - 5, 5, 5; + z_cov << 10, 10, 10, + 10, 10, 10, + 10, 10, 10; m_subscriber = nh.subscribe("/asc/encoder_counts", 1, answer); image_subscriber = nh.subscribe("/image_estimation", 1, ImageAnswer); -- GitLab