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
!422
Resolve "Bug in ProcessorMotion / TimeStamp"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Bug in ProcessorMotion / TimeStamp"
411-bug-in-processormotion-timestamp
into
devel
Overview
1
Commits
3
Pipelines
4
Changes
3
Merged
Joan Vallvé Navarro
requested to merge
411-bug-in-processormotion-timestamp
into
devel
3 years ago
Overview
1
Commits
3
Pipelines
4
Changes
3
Expand
Closes
#411 (closed)
Edited
3 years ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Viewing commit
795c3c5a
Prev
Next
Show latest version
3 files
+
64
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
795c3c5a
new sensor for motion models
· 795c3c5a
Joan Vallvé Navarro
authored
3 years ago
include/core/sensor/sensor_model.h
0 → 100644
+
38
−
0
Options
#ifndef SRC_SENSOR_MODEL_H_
#define SRC_SENSOR_MODEL_H_
//wolf includes
#include
"core/sensor/sensor_base.h"
namespace
wolf
{
WOLF_PTR_TYPEDEFS
(
SensorModel
);
class
SensorModel
:
public
SensorBase
{
public:
SensorModel
();
~
SensorModel
()
override
;
static
SensorBasePtr
create
(
const
std
::
string
&
_unique_name
,
const
ParamsServer
&
_server
)
{
auto
sensor
=
std
::
make_shared
<
SensorModel
>
();
sensor
->
setName
(
_unique_name
);
return
sensor
;
}
static
SensorBasePtr
create
(
const
std
::
string
&
_unique_name
,
const
Eigen
::
VectorXd
&
_extrinsics
,
const
ParamsSensorBasePtr
_intrinsics
)
{
auto
sensor
=
std
::
make_shared
<
SensorModel
>
();
sensor
->
setName
(
_unique_name
);
return
sensor
;
}
};
}
/* namespace wolf */
#endif
/* SRC_SENSOR_POSE_H_ */
Loading