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
f3cbec3f
Commit
f3cbec3f
authored
7 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Make some things 'public' for debugging purposes ...
TODO: to be reverted to ‘protected’
parent
311060d4
No related branches found
No related tags found
1 merge request
!145
Imu improvements
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/processor_imu.h
+1
-0
1 addition, 0 deletions
src/processor_imu.h
src/processor_motion.h
+4
-0
4 additions, 0 deletions
src/processor_motion.h
with
5 additions
and
0 deletions
src/processor_imu.h
+
1
−
0
View file @
f3cbec3f
...
@@ -72,6 +72,7 @@ class ProcessorIMU : public ProcessorMotion{
...
@@ -72,6 +72,7 @@ class ProcessorIMU : public ProcessorMotion{
const
MatrixXs
&
_data_cov
,
const
MatrixXs
&
_data_cov
,
const
FrameBasePtr
&
_frame_origin
)
override
;
const
FrameBasePtr
&
_frame_origin
)
override
;
virtual
FeatureBasePtr
createFeature
(
CaptureMotionPtr
_capture_motion
)
override
;
virtual
FeatureBasePtr
createFeature
(
CaptureMotionPtr
_capture_motion
)
override
;
public:
virtual
ConstraintBasePtr
emplaceConstraint
(
FeatureBasePtr
_feature_motion
,
virtual
ConstraintBasePtr
emplaceConstraint
(
FeatureBasePtr
_feature_motion
,
CaptureBasePtr
_capture_origin
)
override
;
CaptureBasePtr
_capture_origin
)
override
;
...
...
This diff is collapsed.
Click to expand it.
src/processor_motion.h
+
4
−
0
View file @
f3cbec3f
...
@@ -374,18 +374,22 @@ class ProcessorMotion : public ProcessorBase
...
@@ -374,18 +374,22 @@ class ProcessorMotion : public ProcessorBase
const
MatrixXs
&
_data_cov
,
const
MatrixXs
&
_data_cov
,
const
FrameBasePtr
&
_frame_origin
)
=
0
;
const
FrameBasePtr
&
_frame_origin
)
=
0
;
public
:
/** \brief create a feature corresponding to given capture and add the feature to this capture
/** \brief create a feature corresponding to given capture and add the feature to this capture
* \param _capture_motion: the parent capture
* \param _capture_motion: the parent capture
*/
*/
FeatureBasePtr
emplaceFeature
(
CaptureMotionPtr
_capture_own
);
FeatureBasePtr
emplaceFeature
(
CaptureMotionPtr
_capture_own
);
protected
:
virtual
FeatureBasePtr
createFeature
(
CaptureMotionPtr
_capture_own
)
=
0
;
virtual
FeatureBasePtr
createFeature
(
CaptureMotionPtr
_capture_own
)
=
0
;
public
:
/** \brief create a constraint and link it in the wolf tree
/** \brief create a constraint and link it in the wolf tree
* \param _feature_motion: the parent feature
* \param _feature_motion: the parent feature
* \param _frame_origin: the frame constrained by this motion constraint
* \param _frame_origin: the frame constrained by this motion constraint
*/
*/
virtual
ConstraintBasePtr
emplaceConstraint
(
FeatureBasePtr
_feature_motion
,
CaptureBasePtr
_capture_origin
)
=
0
;
virtual
ConstraintBasePtr
emplaceConstraint
(
FeatureBasePtr
_feature_motion
,
CaptureBasePtr
_capture_origin
)
=
0
;
protected
:
Motion
motionZero
(
const
TimeStamp
&
_ts
);
Motion
motionZero
(
const
TimeStamp
&
_ts
);
CaptureMotionPtr
getCaptureMotionContainingTimeStamp
(
const
TimeStamp
&
_ts
);
CaptureMotionPtr
getCaptureMotionContainingTimeStamp
(
const
TimeStamp
&
_ts
);
...
...
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