You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (result.getMultiTagResult().estimatedPose.isPresent) {
Transform3dfieldToCamera = result.getMultiTagResult().estimatedPose.best;
}
I think should be
if (result.getMultiTagResult().isPresent()) {
Transform3dfieldToCamera = result.getMultiTagResult().get().estimatedPose.best;
}
Also, in multiple places including in this example
varresult = camera.getLatestResult();
should not use deprecated method and needs to extract the result from the recommended list (crude example - need to check for empty and multiple entries)
The example code at:
https://docs.photonvision.org/en/v2025.0.0-beta-4/docs/apriltag-pipelines/multitag.html
Enabling MultiTag
I think should be
Also, in multiple places including in this example
should not use deprecated method and needs to extract the result from the recommended list (crude example - need to check for empty and multiple entries)
Also, the home page https://docs.photonvision.org/en/v2025.0.0-beta-4/index.html refers to an archived repository for Contact Us to report issues.
The text was updated successfully, but these errors were encountered: