Adding staleness check for whether there is a target to use.#350
Open
Adding staleness check for whether there is a target to use.#350
Conversation
stephenjust
reviewed
Apr 2, 2025
| Optional<AprilTagVisionIO.TargetObservation> targetObservation = aprilTagVisionSubsystem | ||
| .getTargetObservation(targetCameraID, targetAprilTagID); | ||
| boolean doWeSeeOurTargetTag = targetObservation.isPresent() | ||
| && targetObservation.get().ambiguity() < maxTagAmbiguity.get() && !targetObservation.get().stale(); |
Contributor
There was a problem hiding this comment.
This looks like the only change.
Contributor
There was a problem hiding this comment.
@rokadias could you disable your formatter when editing this repo?
Contributor
There was a problem hiding this comment.
Also, perhaps:
boolean doWeSeeOurTargetTag = targetObservation
.map(obs -> obs.ambiguity() < maxTagAmbiguity.get() && !obs.stale())
.orElse(false);
JohnGilb
approved these changes
Apr 2, 2025
Contributor
JohnGilb
left a comment
There was a problem hiding this comment.
Approved, but see if you can disable your formatter in the future
410c721 to
8aef1fa
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Only real change here is to use stale in
doWeSeeOurTargetTag:Relies on: Team488/SeriouslyCommonLib#594
Why are we doing this?
To make sure we are still seeing the tag before moving into ApproachWhileCentering.
Asana task URL:
Whats changing?
Questions/notes for reviewers
How this was tested
Video/screenshots (from simulator or live robot)
PR feedback legend