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
edd4a13f
Commit
edd4a13f
authored
5 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Remove data_ as member of ProcessorMotion
parent
fde7de68
No related branches found
No related tags found
1 merge request
!317
Motion cleanup
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/core/processor/processor_motion.h
+0
-1
0 additions, 1 deletion
include/core/processor/processor_motion.h
src/processor/processor_motion.cpp
+0
-1
0 additions, 1 deletion
src/processor/processor_motion.cpp
test/gtest_processor_odom_3D.cpp
+0
-4
0 additions, 4 deletions
test/gtest_processor_odom_3D.cpp
with
0 additions
and
6 deletions
include/core/processor/processor_motion.h
+
0
−
1
View file @
edd4a13f
...
...
@@ -466,7 +466,6 @@ class ProcessorMotion : public ProcessorBase
// helpers to avoid allocation
Scalar
dt_
;
///< Time step
Eigen
::
VectorXs
x_
;
///< current state
Eigen
::
VectorXs
data_
;
///< current data
Eigen
::
VectorXs
delta_
;
///< current delta
Eigen
::
MatrixXs
delta_cov_
;
///< current delta covariance
Eigen
::
VectorXs
delta_integrated_
;
///< integrated delta
...
...
This diff is collapsed.
Click to expand it.
src/processor/processor_motion.cpp
+
0
−
1
View file @
edd4a13f
...
...
@@ -21,7 +21,6 @@ ProcessorMotion::ProcessorMotion(const std::string& _type,
last_ptr_
(),
incoming_ptr_
(),
dt_
(
0.0
),
x_
(
_state_size
),
data_
(
_data_size
),
delta_
(
_delta_size
),
delta_cov_
(
_delta_cov_size
,
_delta_cov_size
),
delta_integrated_
(
_delta_size
),
...
...
This diff is collapsed.
Click to expand it.
test/gtest_processor_odom_3D.cpp
+
0
−
4
View file @
edd4a13f
...
...
@@ -46,10 +46,6 @@ class ProcessorOdom3DTest : public ProcessorOdom3D
ProcessorOdom3DTest
();
// getters :-D !!
VectorXs
&
delta
()
{
return
delta_
;}
VectorXs
&
deltaInt
()
{
return
delta_integrated_
;}
MatrixXs
&
deltaCov
()
{
return
delta_cov_
;}
MatrixXs
&
deltaIntCov
()
{
return
delta_integrated_cov_
;}
Scalar
&
kdd
()
{
return
k_disp_to_disp_
;}
Scalar
&
kdr
()
{
return
k_disp_to_rot_
;}
Scalar
&
krr
()
{
return
k_rot_to_rot_
;}
...
...
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