Point Cloud Library (PCL)
1.14.1-dev
|
Simple stopwatch. More...
#include <pcl/common/time.h>
Public Member Functions | |
StopWatch ()=default | |
Constructor. More... | |
double | getTime () const |
Retrieve the time in milliseconds spent since the last call to reset(). More... | |
double | getTimeSeconds () const |
Retrieve the time in seconds spent since the last call to reset(). More... | |
void | reset () |
Reset the stopwatch to 0. More... | |
Protected Attributes | |
std::chrono::time_point< std::chrono::steady_clock > | start_time_ = std::chrono::steady_clock::now() |
|
default |
Constructor.
|
inline |
Retrieve the time in milliseconds spent since the last call to reset().
Definition at line 66 of file time.h.
References start_time_.
Referenced by getTimeSeconds(), and pcl::ScopeTime::~ScopeTime().
|
inline |
Retrieve the time in seconds spent since the last call to reset().
Definition at line 74 of file time.h.
References getTime().
Referenced by pcl::registration::FPCSInitialAlignment< PointSource, PointTarget, NormalT, Scalar >::computeTransformation(), and pcl::EventFrequency::event().
|
inline |
Reset the stopwatch to 0.
Definition at line 81 of file time.h.
References start_time_.
Referenced by pcl::EventFrequency::EventFrequency(), and pcl::EventFrequency::reset().
|
protected |