Fantastic Mr Fox
Fantastic Mr Fox

Reputation: 33944

pcl include convolution not working

I am trying to use the convolution library in pcl (point cloud library). The page for the Gaussian Convolution page is here. It quotes the following include for this library:

#include <pcl/filters/convolution_3d.h>

But when I include the above file I get the following compile error:

fatal error: pcl/filters/convolution_3d.h: No such file or directory

Other includes from the filters file like:

#include <pcl/filters/radius_outlier_removal.h>
#include <pcl/filters/conditional_removal.h>

Works just fine, so why does the convolution library not work?

Upvotes: 0

Views: 473

Answers (1)

ergosys
ergosys

Reputation: 49049

That functionality is only in the trunk version (1.6), so this could be explained by only having the 1.5.1 version installed, or possibly not having the right -I/-L flags for the compiler to see the trunk version first, assuming you have both installed.

Upvotes: 1

Related Questions