AoboSir 博客

与15年前的我比,我现在是大人;与15年后的我比,我现在还是个婴儿

PCL 记录时间长度 — TicToc 类


对于PCL在WindowsLinux上的环境的搭建请参考我写的这几篇博客。


1
#include <pcl/console/time.h>
1
2
3
4
5
6
pcl::console::TicToc tt;
tt.tic ();

//需要记录执行多长时间的代码

std::cout << "[done, " << tt.toc () << " ms ]" << std::endl;

Comments