Skip to content

Commit

Permalink
bump max distance on apriltags to 6ft
Browse files Browse the repository at this point in the history
  • Loading branch information
superpenguin612 committed Feb 25, 2024
1 parent f84e941 commit 6d2fa0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public Matrix<N3, N1> getEstimationStdDevs(Pose2d estimatedPose, Matrix<N3, N1>
return estStdDevs;
avgDist /= numTags;

if (avgDist > 4)
if (avgDist > 6)
estStdDevs = VecBuilder.fill(Double.MAX_VALUE, Double.MAX_VALUE, Double.MAX_VALUE);
else {
if (numTags > 1)
Expand Down

0 comments on commit 6d2fa0f

Please sign in to comment.