Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
PCA AprilTag
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HYPER
PCA AprilTag
Commits
ded23781
Commit
ded23781
authored
1 month ago
by
Victor
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix in `AprilTagDetector` where the final averaged pose is null
parent
e4a9d627
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+6
-0
6 additions, 0 deletions
CHANGELOG.md
Runtime/Scripts/AprilTagDetector.cs
+2
-2
2 additions, 2 deletions
Runtime/Scripts/AprilTagDetector.cs
package.json
+1
-1
1 addition, 1 deletion
package.json
with
9 additions
and
3 deletions
CHANGELOG.md
+
6
−
0
View file @
ded23781
...
...
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## 1.0.4 - 2025-07-05
### Fixed
-
Bug fix in
`AprilTagDetector`
where the final averaged pose is null.
## 1.0.3 - 2025-07-04
### Changed
...
...
This diff is collapsed.
Click to expand it.
Runtime/Scripts/AprilTagDetector.cs
+
2
−
2
View file @
ded23781
...
...
@@ -129,14 +129,14 @@ namespace Hyper.PCAAprilTag
}
_detectedTags
.
Clear
();
OnTagsDetected
?.
Invoke
(
AvgDetectedTags
());
if
(!
isContinuous
&&
_tagPoseSizeDict
.
First
().
Value
.
Count
>=
numAveragedPoses
)
{
Deactivate
();
if
(
playSuccessSound
)
_doneAudioSource
.
Play
();
_tagPoseSizeDict
.
Clear
();
}
OnTagsDetected
?.
Invoke
(
AvgDetectedTags
());
}
if
(!
isActivated
||
!
_webCamTextureManager
.
WebCamTexture
||
...
...
This diff is collapsed.
Click to expand it.
package.json
+
1
−
1
View file @
ded23781
{
"name"
:
"de.tu-dresden.hyper.pca-apriltag"
,
"version"
:
"1.0.
3
"
,
"version"
:
"1.0.
4
"
,
"displayName"
:
"HYPER PCA AprilTag"
,
"description"
:
"This package provides AprilTag detection using Passthrough Camera API."
,
"unity"
:
"6000.0"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment