Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions gpu/features/src/fpfh.cu
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,8 @@
#include "pcl/gpu/utils/safe_call.hpp"
#include "pcl/gpu/utils/device/warp.hpp"
#include "pcl/gpu/utils/device/functional.hpp"
#include "pcl/gpu/utils/device/funcattrib.hpp"
#include "pcl/gpu/utils/timers_cuda.hpp"
#include "pcl/gpu/features/device/pair_features.hpp"

#include <iostream>

using namespace pcl::gpu;
using namespace pcl::device;

Expand Down Expand Up @@ -124,7 +120,7 @@ namespace pcl

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

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

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