Skip to content

Commit

Permalink
Lower vision kalman filter coeffs (trust vision more)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpatankar6 committed Apr 13, 2024
1 parent c511ff8 commit 974809d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/vision/Vision.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
public class Vision {

private static final double kTargetLogTimeSecs = 0.1;
private final double kXYStdDevCoefficient = 0.1;
private final double kThetaStdDevCoefficient = 0.1;
private final double kXYStdDevCoefficient = 0.005;
private final double kThetaStdDevCoefficient = 0.01;
private final double kFieldBorderMargin = 0.5;
private final double kZMargin = 0.75;
// #region Set these to false to disable vision measurements;
Expand Down

0 comments on commit 974809d

Please sign in to comment.