Skip to content

Commit 5b2da87

Browse files
authored
Cleanup gpu fpfh and remove unnecessary headers (#6311)
* Cleanup gpu fpfh and remove unnecessary headers * Put M_PI definition back in --------- Co-authored-by: jmackay2 <jmackay2>
1 parent b9c72df commit 5b2da87

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

gpu/features/src/fpfh.cu

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,8 @@
3939
#include "pcl/gpu/utils/safe_call.hpp"
4040
#include "pcl/gpu/utils/device/warp.hpp"
4141
#include "pcl/gpu/utils/device/functional.hpp"
42-
#include "pcl/gpu/utils/device/funcattrib.hpp"
43-
#include "pcl/gpu/utils/timers_cuda.hpp"
4442
#include "pcl/gpu/features/device/pair_features.hpp"
4543

46-
#include <iostream>
47-
4844
using namespace pcl::gpu;
4945
using namespace pcl::device;
5046

@@ -124,7 +120,7 @@ namespace pcl
124120

125121
float hist_incr = 100.f / (float)(size - 1); // or 100/(size - 1) ???
126122

127-
//now [inds, inds + size) contains indices of neighb points for idx-th point in cloud
123+
//now [inds, inds + size) contains indices of neighboring points for idx-th point in cloud
128124
//this list also contains idx itseelf.
129125

130126
for(int i = lane; i < size; i += Warp::STRIDE)

0 commit comments

Comments
 (0)