1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#include <pcl/features/normal_3d.h> // for NormalEstimation
#include <pcl/features/normal_3d_omp.h> // for NormalEstimationOMP
#include <pcl/io/pcd_io.h> // for PCDReader
#include <benchmark/benchmark.h>
static void
BM_NormalEstimation(benchmark::State& state, const std::string& file)
{
// Perform setup here
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>);
pcl::PCDReader reader;
reader.read(file, *cloud);
pcl::NormalEstimation<pcl::PointXYZ, pcl::Normal> ne;
ne.setInputCloud(cloud);
ne.setKSearch(state.range(0));
pcl::PointCloud<pcl::Normal>::Ptr cloud_normals(new pcl::PointCloud<pcl::Normal>);
for (auto _ : state) {
// This code gets timed
ne.compute(*cloud_normals);
}
}
#ifdef _OPENMP
static void
BM_NormalEstimationOMP(benchmark::State& state, const std::string& file)
{
// Perform setup here
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>);
pcl::PCDReader reader;
reader.read(file, *cloud);
pcl::NormalEstimationOMP<pcl::PointXYZ, pcl::Normal> ne;
ne.setInputCloud(cloud);
ne.setKSearch(100);
pcl::PointCloud<pcl::Normal>::Ptr cloud_normals(new pcl::PointCloud<pcl::Normal>);
for (auto _ : state) {
// This code gets timed
ne.compute(*cloud_normals);
}
}
#endif
int
main(int argc, char** argv)
{
if (argc < 3) {
std::cerr
<< "No test files given. Please download `table_scene_mug_stereo_textured.pcd` "
"and `milk_cartoon_all_small_clorox.pcd`, and pass their paths to the test."
<< std::endl;
return (-1);
}
benchmark::RegisterBenchmark("BM_NormalEstimation_mug", &BM_NormalEstimation, argv[1])
->Arg(50)
->Arg(100)
->Unit(benchmark::kMillisecond);
benchmark::RegisterBenchmark(
"BM_NormalEstimation_milk", &BM_NormalEstimation, argv[2])
->Arg(50)
->Arg(100)
->Unit(benchmark::kMillisecond);
#ifdef _OPENMP
benchmark::RegisterBenchmark(
"BM_NormalEstimationOMP", &BM_NormalEstimationOMP, argv[1])
->Unit(benchmark::kMillisecond);
#endif
benchmark::Initialize(&argc, argv);
benchmark::RunSpecifiedBenchmarks();
}
|