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
8d8c466d
Commit
8d8c466d
authored
3 months ago
by
cont-integration
Browse files
Options
Downloads
Patches
Plain Diff
[skip ci] applied clang format
parent
3de00b4e
No related branches found
No related tags found
1 merge request
!448
Draft: Resolve "Implementation of new nodes creation"
Pipeline
#20418
skipped
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/core/processor/processor_base.h
+4
-4
4 additions, 4 deletions
include/core/processor/processor_base.h
include/core/processor/processor_tracker.h
+3
-3
3 additions, 3 deletions
include/core/processor/processor_tracker.h
with
7 additions
and
7 deletions
include/core/processor/processor_base.h
+
4
−
4
View file @
8d8c466d
...
...
@@ -135,10 +135,10 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce
ProfilingUnit
profiling_capture_
,
profiling_kf_
;
public:
void
startCaptureProfiling
();
void
stopCaptureProfiling
();
void
startKFProfiling
();
void
stopKFProfiling
();
void
startCaptureProfiling
();
void
stopCaptureProfiling
();
void
startKFProfiling
();
void
stopKFProfiling
();
virtual
void
printProfiling
(
std
::
ostream
&
stream
=
std
::
cout
)
const
;
/** \brief constructor
...
...
This diff is collapsed.
Click to expand it.
include/core/processor/processor_tracker.h
+
3
−
3
View file @
8d8c466d
...
...
@@ -189,7 +189,7 @@ class ProcessorTracker : public ProcessorBase
* - initializing counters, flags, or any derived variables
* - initializing algorithms needed for processing the derived data
*/
virtual
void
preProcess
()
{};
virtual
void
preProcess
(){};
/** Post-process
*
...
...
@@ -201,7 +201,7 @@ class ProcessorTracker : public ProcessorBase
* - resetting and/or clearing variables and/or algorithms at the end of processing
* - drawing / printing / logging the results of the processing
*/
virtual
void
postProcess
()
{};
virtual
void
postProcess
(){};
/** \brief Tracker function
* \return The number of successful tracks.
...
...
@@ -387,7 +387,7 @@ inline unsigned int ProcessorTracker::processNewProfiling(const int& _max_featur
process_new_profiling_
.
startProfiling
();
auto
result
=
processNew
(
_max_features
);
process_new_profiling_
.
stopProfiling
();
return
result
;
}
...
...
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