Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!233
WIP: Apriltag
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
WIP: Apriltag
Apriltag
into
devel
Overview
0
Commits
276
Pipelines
63
Changes
5
Merged
Joan Solà Ortega
requested to merge
Apriltag
into
devel
6 years ago
Overview
0
Commits
276
Pipelines
63
Changes
5
Expand
MR open while Gitflow transition
It can stay open until big merge in the future
0
0
Merge request reports
Viewing commit
96d63048
Prev
Next
Show latest version
5 files
+
9
−
8
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
96d63048
Processor apriltag adapted to feature taking information matrix instead of covariance
· 96d63048
Mederic Fourmy
authored
6 years ago
src/features/feature_apriltag.cpp
+
4
−
3
Options
@@ -4,10 +4,11 @@
@@ -4,10 +4,11 @@
namespace
wolf
{
namespace
wolf
{
FeatureApriltag
::
FeatureApriltag
(
const
Eigen
::
Vector7s
&
_measurement
,
FeatureApriltag
::
FeatureApriltag
(
const
Eigen
::
Vector7s
&
_measurement
,
const
Eigen
::
Matrix6s
&
_meas_
covariance
,
const
Eigen
::
Matrix6s
&
_meas_
uncertainty
,
const
int
_tag_id
,
const
int
_tag_id
,
const
apriltag_detection_t
&
_det
)
:
const
apriltag_detection_t
&
_det
,
FeatureBase
(
"APRILTAG"
,
_measurement
,
_meas_covariance
),
UncertaintyType
_uncertainty_type
)
:
FeatureBase
(
"APRILTAG"
,
_measurement
,
_meas_uncertainty
,
_uncertainty_type
),
tag_id_
(
_tag_id
),
tag_id_
(
_tag_id
),
tag_corners_
(
4
),
tag_corners_
(
4
),
detection_
(
_det
)
detection_
(
_det
)
Loading