Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
imu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
plugins
imu
Commits
efd58281
Commit
efd58281
authored
5 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Rename a few variables for consistency
parent
10d01cf5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!39
release after RAL
,
!38
After 2nd RAL submission
,
!12
Capture motion
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/IMU/capture/capture_IMU.h
+2
-2
2 additions, 2 deletions
include/IMU/capture/capture_IMU.h
src/capture/capture_IMU.cpp
+4
-4
4 additions, 4 deletions
src/capture/capture_IMU.cpp
with
6 additions
and
6 deletions
include/IMU/capture/capture_IMU.h
+
2
−
2
View file @
efd58281
...
@@ -17,14 +17,14 @@ class CaptureIMU : public CaptureMotion
...
@@ -17,14 +17,14 @@ class CaptureIMU : public CaptureMotion
SensorBasePtr
_sensor_ptr
,
SensorBasePtr
_sensor_ptr
,
const
Eigen
::
Vector6s
&
_data
,
const
Eigen
::
Vector6s
&
_data
,
const
Eigen
::
MatrixXs
&
_data_cov
,
const
Eigen
::
MatrixXs
&
_data_cov
,
CaptureBasePtr
_
origin_
capture
=
nullptr
);
CaptureBasePtr
_capture
_origin_ptr
=
nullptr
);
CaptureIMU
(
const
TimeStamp
&
_init_ts
,
CaptureIMU
(
const
TimeStamp
&
_init_ts
,
SensorBasePtr
_sensor_ptr
,
SensorBasePtr
_sensor_ptr
,
const
Eigen
::
Vector6s
&
_data
,
const
Eigen
::
Vector6s
&
_data
,
const
Eigen
::
MatrixXs
&
_data_cov
,
const
Eigen
::
MatrixXs
&
_data_cov
,
const
Vector6s
&
_bias
,
const
Vector6s
&
_bias
,
CaptureBasePtr
_
origin_
capture
=
nullptr
);
CaptureBasePtr
_capture
_origin_ptr
=
nullptr
);
virtual
~
CaptureIMU
();
virtual
~
CaptureIMU
();
...
...
This diff is collapsed.
Click to expand it.
src/capture/capture_IMU.cpp
+
4
−
4
View file @
efd58281
...
@@ -8,8 +8,8 @@ CaptureIMU::CaptureIMU(const TimeStamp& _init_ts,
...
@@ -8,8 +8,8 @@ CaptureIMU::CaptureIMU(const TimeStamp& _init_ts,
SensorBasePtr
_sensor_ptr
,
SensorBasePtr
_sensor_ptr
,
const
Eigen
::
Vector6s
&
_acc_gyro_data
,
const
Eigen
::
Vector6s
&
_acc_gyro_data
,
const
Eigen
::
MatrixXs
&
_data_cov
,
const
Eigen
::
MatrixXs
&
_data_cov
,
CaptureBasePtr
_
origin_
capture
)
:
CaptureBasePtr
_capture
_origin_ptr
)
:
CaptureMotion
(
"IMU"
,
_init_ts
,
_sensor_ptr
,
_acc_gyro_data
,
_data_cov
,
10
,
9
,
_
origin_
capture
,
nullptr
,
nullptr
,
std
::
make_shared
<
StateBlock
>
(
6
,
false
))
CaptureMotion
(
"IMU"
,
_init_ts
,
_sensor_ptr
,
_acc_gyro_data
,
_data_cov
,
10
,
9
,
_capture
_origin_ptr
,
nullptr
,
nullptr
,
std
::
make_shared
<
StateBlock
>
(
6
,
false
))
{
{
//
//
}
}
...
@@ -19,8 +19,8 @@ CaptureIMU::CaptureIMU(const TimeStamp& _init_ts,
...
@@ -19,8 +19,8 @@ CaptureIMU::CaptureIMU(const TimeStamp& _init_ts,
const
Eigen
::
Vector6s
&
_acc_gyro_data
,
const
Eigen
::
Vector6s
&
_acc_gyro_data
,
const
Eigen
::
MatrixXs
&
_data_cov
,
const
Eigen
::
MatrixXs
&
_data_cov
,
const
Vector6s
&
_bias
,
const
Vector6s
&
_bias
,
CaptureBasePtr
_
origin_
capture
)
:
CaptureBasePtr
_capture
_origin_ptr
)
:
CaptureMotion
(
"IMU"
,
_init_ts
,
_sensor_ptr
,
_acc_gyro_data
,
_data_cov
,
10
,
9
,
_
origin_
capture
,
nullptr
,
nullptr
,
std
::
make_shared
<
StateBlock
>
(
_bias
,
false
))
CaptureMotion
(
"IMU"
,
_init_ts
,
_sensor_ptr
,
_acc_gyro_data
,
_data_cov
,
10
,
9
,
_capture
_origin_ptr
,
nullptr
,
nullptr
,
std
::
make_shared
<
StateBlock
>
(
_bias
,
false
))
{
{
//
//
}
}
...
...
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