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
Commits
6e923a62
There was a problem fetching the pipeline mini graph.
Commit
6e923a62
authored
7 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
Info->Information
parent
d6664701
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!207
FeatureBase: covariance, information, square root information upper matrices
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/feature_base.cpp
+1
-1
1 addition, 1 deletion
src/feature_base.cpp
src/feature_base.h
+1
-1
1 addition, 1 deletion
src/feature_base.h
with
2 additions
and
2 deletions
src/feature_base.cpp
+
1
−
1
View file @
6e923a62
...
...
@@ -102,7 +102,7 @@ void FeatureBase::setMeasurementCovariance(const Eigen::MatrixXs & _meas_cov)
measurement_sqrt_information_upper_
=
computeSqrtUpper
(
measurement_covariance_
.
inverse
());
}
void
FeatureBase
::
setMeasurementInfo
(
const
Eigen
::
MatrixXs
&
_meas_info
)
void
FeatureBase
::
setMeasurementInfo
rmation
(
const
Eigen
::
MatrixXs
&
_meas_info
)
{
assert
(
_meas_info
.
determinant
()
>
Constants
::
EPS_SMALL
&&
"Not positive definite measurement information"
);
assert
((
_meas_info
-
_meas_info
.
transpose
()).
cwiseAbs
().
maxCoeff
()
<
Constants
::
EPS
&&
"Not symmetric measurement information"
);
...
...
This diff is collapsed.
Click to expand it.
src/feature_base.h
+
1
−
1
View file @
6e923a62
...
...
@@ -64,7 +64,7 @@ class FeatureBase : public NodeBase, public std::enable_shared_from_this<Feature
const
Eigen
::
VectorXs
&
getMeasurement
()
const
;
void
setMeasurement
(
const
Eigen
::
VectorXs
&
_meas
);
void
setMeasurementCovariance
(
const
Eigen
::
MatrixXs
&
_meas_cov
);
void
setMeasurementInfo
(
const
Eigen
::
MatrixXs
&
_meas_info
);
void
setMeasurementInfo
rmation
(
const
Eigen
::
MatrixXs
&
_meas_info
);
const
Eigen
::
MatrixXs
&
getMeasurementCovariance
()
const
;
Eigen
::
MatrixXs
getMeasurementInformation
()
const
;
const
Eigen
::
MatrixXs
&
getMeasurementSquareRootInformationUpper
()
const
;
...
...
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