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
969301ff
Commit
969301ff
authored
6 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Fix unsigned int -> int
parent
d5141ad9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!30
Release after RAL
,
!29
After 2nd RAL submission
,
!4
Small fixes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/laser/processor/processor_tracker_feature_polyline_2D.h
+1
-1
1 addition, 1 deletion
...e/laser/processor/processor_tracker_feature_polyline_2D.h
src/processor/processor_tracker_feature_polyline_2D.cpp
+1
-1
1 addition, 1 deletion
src/processor/processor_tracker_feature_polyline_2D.cpp
with
2 additions
and
2 deletions
include/laser/processor/processor_tracker_feature_polyline_2D.h
+
1
−
1
View file @
969301ff
...
...
@@ -105,7 +105,7 @@ class ProcessorTrackerFeaturePolyline2D : public ProcessorTrackerFeature
/**\brief Process new Features
*
*/
virtual
unsigned
int
processNew
(
const
unsigned
int
&
_max_features
);
virtual
unsigned
int
processNew
(
const
int
&
_max_features
);
/** \brief Detect new Features
* \param _max_features maximum number of features detected (-1: unlimited. 0: none)
...
...
This diff is collapsed.
Click to expand it.
src/processor/processor_tracker_feature_polyline_2D.cpp
+
1
−
1
View file @
969301ff
...
...
@@ -161,7 +161,7 @@ bool ProcessorTrackerFeaturePolyline2D::voteForKeyFrame()
return
false
;
}
unsigned
int
ProcessorTrackerFeaturePolyline2D
::
processNew
(
const
unsigned
int
&
_max_features
)
unsigned
int
ProcessorTrackerFeaturePolyline2D
::
processNew
(
const
int
&
_max_features
)
{
WOLF_DEBUG
(
"PTFP "
,
getName
(),
"::processNew: "
);
unsigned
int
n
=
ProcessorTrackerFeature
::
processNew
(
_max_features
);
...
...
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