Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
laser
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
laser
Commits
0bcc739d
Commit
0bcc739d
authored
2 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Document principal derived methods
parent
2fdd35e2
No related branches found
No related tags found
1 merge request
!42
devel->main
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/laser/processor/processor_odom_icp.h
+32
-0
32 additions, 0 deletions
include/laser/processor/processor_odom_icp.h
with
32 additions
and
0 deletions
include/laser/processor/processor_odom_icp.h
+
32
−
0
View file @
0bcc739d
...
@@ -123,12 +123,44 @@ class ProcessorOdomIcp : public ProcessorTracker, public MotionProvider
...
@@ -123,12 +123,44 @@ class ProcessorOdomIcp : public ProcessorTracker, public MotionProvider
protected:
protected:
void
preProcess
()
override
;
void
preProcess
()
override
;
/** \brief Compute transform from origin to incoming.
*
* The transform is the result of aligning the scans in origin and incoming.
* This alignement takes as prior the current transform from origin to last.
*
* \return the number of features tracked. This is always zero since this processor is not tracking features.
*/
unsigned
int
processKnown
()
override
;
unsigned
int
processKnown
()
override
;
/** \brief Compute transform from last to incoming.
*
* The transform is the result of aligning the scans in last and incoming.
* This alignement takes as prior the identity transform.
*
* \param _max_features number of features to extract. This is ignored since this processor is not extracting features.
*
* \return the number of features extracted. This is always zero since this processor is not extracting features.
*/
unsigned
int
processNew
(
const
int
&
_max_features
)
override
;
unsigned
int
processNew
(
const
int
&
_max_features
)
override
;
bool
voteForKeyFrame
()
const
override
;
bool
voteForKeyFrame
()
const
override
;
/** \brief advance pointers and update internal values
*
* We do several things:
* - Advance derived pointers
* - Advance isometries
* - Update extrinsic isometries in case they have changed
* - Compute odometry
*/
void
advanceDerived
()
override
;
void
advanceDerived
()
override
;
/** \brief advance pointers and update internal values
*
* We do several things:
* - Reset derived pointers
* - Reset isometries
* - Update extrinsic isometries in case they have changed
* - Compute odometry
*/
void
resetDerived
()
override
;
void
resetDerived
()
override
;
...
...
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