|
Point Cloud Library (PCL)
1.6.0
|
A bilateral filter implementation for point cloud data. More...
#include <pcl/filters/bilateral.h>


Public Types | |
| typedef boost::shared_ptr < Filter< PointT > > | Ptr |
| typedef boost::shared_ptr < const Filter< PointT > > | ConstPtr |
| typedef PointCloud::Ptr | PointCloudPtr |
| typedef PointCloud::ConstPtr | PointCloudConstPtr |
| typedef PointIndices::Ptr | PointIndicesPtr |
| typedef PointIndices::ConstPtr | PointIndicesConstPtr |
Public Member Functions | |
| BilateralFilter () | |
| Constructor. More... | |
| void | applyFilter (PointCloud &output) |
| Filter the input data and store the results into output. More... | |
| double | computePointWeight (const int pid, const std::vector< int > &indices, const std::vector< float > &distances) |
| Compute the intensity average for a single point. More... | |
| void | setHalfSize (const double sigma_s) |
| Set the half size of the Gaussian bilateral filter window. More... | |
| double | getHalfSize () |
| Get the half size of the Gaussian bilateral filter window as set by the user. More... | |
| void | setStdDev (const double sigma_r) |
| Set the standard deviation parameter. More... | |
| double | getStdDev () |
| Get the value of the current standard deviation parameter of the bilateral filter. More... | |
| void | setSearchMethod (const KdTreePtr &tree) |
| Provide a pointer to the search object. More... | |
| IndicesConstPtr const | getRemovedIndices () |
| Get the point indices being removed. More... | |
| void | filter (PointCloud &output) |
| Calls the filtering method and returns the filtered dataset in output. More... | |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| Provide a pointer to the input dataset. More... | |
| PointCloudConstPtr const | getInputCloud () |
| Get a pointer to the input point cloud dataset. More... | |
| void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| void | setIndices (const IndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| void | setIndices (const PointIndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| void | setIndices (size_t row_start, size_t col_start, size_t nb_rows, size_t nb_cols) |
| Set the indices for the points laying within an interest region of the point cloud. More... | |
| IndicesPtr const | getIndices () |
| Get a pointer to the vector of indices used. More... | |
| const PointT & | operator[] (size_t pos) |
| Override PointCloud operator[] to shorten code. More... | |
A bilateral filter implementation for point cloud data.
Uses the intensity data channel.
Definition at line 55 of file bilateral.h.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
Definition at line 79 of file pcl_base.h.
|
inherited |
Definition at line 78 of file pcl_base.h.
|
inherited |
|
inline |
|
virtual |
Filter the input data and store the results into output.
| [out] | output | the resultant point cloud message |
Implements pcl::Filter< PointT >.
Definition at line 71 of file bilateral.hpp.
| double pcl::BilateralFilter< PointT >::computePointWeight | ( | const int | pid, |
| const std::vector< int > & | indices, | ||
| const std::vector< float > & | distances | ||
| ) |
Compute the intensity average for a single point.
| [in] | pid | the point index to compute the weight for |
| [in] | indices | the set of nearest neighor indices |
| [in] | distances | the set of nearest neighbor distances |
Definition at line 45 of file bilateral.hpp.
|
inlineinherited |
|
inline |
Get the half size of the Gaussian bilateral filter window as set by the user.
Definition at line 99 of file bilateral.h.
|
inlineinherited |
Get a pointer to the vector of indices used.
Definition at line 190 of file pcl_base.h.
|
inlineinherited |
Get a pointer to the input point cloud dataset.
Definition at line 107 of file pcl_base.h.
|
inlineinherited |
|
inline |
Get the value of the current standard deviation parameter of the bilateral filter.
Definition at line 115 of file bilateral.h.
|
inlineinherited |
Override PointCloud operator[] to shorten code.
| pos | position in indices_ vector |
Definition at line 197 of file pcl_base.h.
|
inline |
Set the half size of the Gaussian bilateral filter window.
| [in] | sigma_s | the half size of the Gaussian bilateral filter window to use |
Definition at line 92 of file bilateral.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 113 of file pcl_base.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 124 of file pcl_base.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 135 of file pcl_base.h.
|
inlineinherited |
Set the indices for the points laying within an interest region of the point cloud.
| row_start | the offset on rows |
| col_start | the offset on columns |
| nb_rows | the number of rows to be considered row_start included |
| nb_cols | the number of columns to be considered col_start included |
Definition at line 151 of file pcl_base.h.
|
inlinevirtualinherited |
Provide a pointer to the input dataset.
| cloud | the const boost shared pointer to a PointCloud message |
Reimplemented in pcl::PCA< PointT >.
Definition at line 103 of file pcl_base.h.
|
inline |
Provide a pointer to the search object.
| [in] | tree | a pointer to the spatial search object. |
Definition at line 124 of file bilateral.h.
|
inline |
Set the standard deviation parameter.
| [in] | sigma_r | the new standard deviation parameter |
Definition at line 108 of file bilateral.h.
1.8.4