Public Types | Public Member Functions | Public Attributes | Protected Member Functions | Private Attributes
pcl::BilateralUpsampling< PointInT, PointOutT > Class Template Reference

Bilateral filtering implementation, based on the following paper: * Kopf, Johannes and Cohen, Michael F. and Lischinski, Dani and Uyttendaele, Matt - Joint Bilateral Upsampling, * ACM Transations in Graphics, July 2007. More...

#include <bilateral_upsampling.h>

Inheritance diagram for pcl::BilateralUpsampling< PointInT, PointOutT >:
Inheritance graph
[legend]

List of all members.

Public Types

typedef pcl::PointCloud
< PointOutT > 
PointCloudOut

Public Member Functions

 BilateralUpsampling ()
 Constructor.
Eigen::Matrix3f getProjectionMatrix () const
 Returns the current projection matrix.
float getSigmaColor () const
 Returns the current sigma color value.
float getSigmaDepth () const
 Returns the current sigma depth value.
int getWindowSize () const
 Returns the filter window size.
void process (pcl::PointCloud< PointOutT > &output)
 Method that does the actual processing on the input cloud.
void setProjectionMatrix (const Eigen::Matrix3f &projection_matrix)
 Method that sets the projection matrix to be used when unprojecting the points in the depth image back to (x,y,z) positions.
void setSigmaColor (const float &sigma_color)
 Method that sets the sigma color parameter.
void setSigmaDepth (const float &sigma_depth)
 Method that sets the sigma depth parameter.
void setWindowSize (int window_size)
 Method that sets the window size for the filter.

Public Attributes

Eigen::Matrix3f KinectSXGAProjectionMatrix
Eigen::Matrix3f KinectVGAProjectionMatrix

Protected Member Functions

void performProcessing (pcl::PointCloud< PointOutT > &output)
 Abstract cloud processing method.

Private Attributes

Eigen::Matrix3f projection_matrix_
float sigma_color_
float sigma_depth_
Eigen::Matrix3f unprojection_matrix_
int window_size_

Detailed Description

template<typename PointInT, typename PointOutT>
class pcl::BilateralUpsampling< PointInT, PointOutT >

Bilateral filtering implementation, based on the following paper: * Kopf, Johannes and Cohen, Michael F. and Lischinski, Dani and Uyttendaele, Matt - Joint Bilateral Upsampling, * ACM Transations in Graphics, July 2007.

Takes in a colored organized point cloud (i.e. PointXYZRGB or PointXYZRGBA), that might contain nan values for the depth information, and it will returned an upsampled version of this cloud, based on the formula:

\[ \tilde{S}_p = \frac{1}{k_p} \sum_{q_d \in \Omega} {S_{q_d} f(||p_d - q_d|| g(||\tilde{I}_p-\tilde{I}_q||}) \]

where S is the depth image, I is the RGB image and f and g are Gaussian functions centered at 0 and with standard deviations $\sigma_{color}$ and $\sigma_{depth}$

Definition at line 63 of file bilateral_upsampling.h.


Member Typedef Documentation

template<typename PointInT, typename PointOutT>
typedef pcl::PointCloud<PointOutT> pcl::BilateralUpsampling< PointInT, PointOutT >::PointCloudOut

Definition at line 72 of file bilateral_upsampling.h.


Constructor & Destructor Documentation

template<typename PointInT, typename PointOutT>
pcl::BilateralUpsampling< PointInT, PointOutT >::BilateralUpsampling ( ) [inline]

Constructor.

Definition at line 77 of file bilateral_upsampling.h.


Member Function Documentation

template<typename PointInT, typename PointOutT>
Eigen::Matrix3f pcl::BilateralUpsampling< PointInT, PointOutT >::getProjectionMatrix ( ) const [inline]

Returns the current projection matrix.

Definition at line 134 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
float pcl::BilateralUpsampling< PointInT, PointOutT >::getSigmaColor ( ) const [inline]

Returns the current sigma color value.

Definition at line 112 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
float pcl::BilateralUpsampling< PointInT, PointOutT >::getSigmaDepth ( ) const [inline]

Returns the current sigma depth value.

Definition at line 122 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
int pcl::BilateralUpsampling< PointInT, PointOutT >::getWindowSize ( ) const [inline]

Returns the filter window size.

Definition at line 102 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
void pcl::BilateralUpsampling< PointInT, PointOutT >::performProcessing ( pcl::PointCloud< PointOutT > &  output) [protected, virtual]

Abstract cloud processing method.

Implements pcl::CloudSurfaceProcessing< PointInT, PointOutT >.

Definition at line 87 of file bilateral_upsampling.hpp.

template<typename PointInT , typename PointOutT >
void pcl::BilateralUpsampling< PointInT, PointOutT >::process ( pcl::PointCloud< PointOutT > &  output) [virtual]

Method that does the actual processing on the input cloud.

Parameters:
[out]outputthe container of the resulting upsampled cloud

Reimplemented from pcl::CloudSurfaceProcessing< PointInT, PointOutT >.

Definition at line 49 of file bilateral_upsampling.hpp.

template<typename PointInT, typename PointOutT>
void pcl::BilateralUpsampling< PointInT, PointOutT >::setProjectionMatrix ( const Eigen::Matrix3f &  projection_matrix) [inline]

Method that sets the projection matrix to be used when unprojecting the points in the depth image back to (x,y,z) positions.

Note:
There are 2 matrices already set in the class, used for the 2 modes available for the Kinect. They are tuned to be the same as the ones in the OpenNiGrabber
Parameters:
[in]projection_matrixthe new projection matrix to be set

Definition at line 130 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
void pcl::BilateralUpsampling< PointInT, PointOutT >::setSigmaColor ( const float &  sigma_color) [inline]

Method that sets the sigma color parameter.

Parameters:
[in]sigma_colorthe new value to be set

Definition at line 108 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
void pcl::BilateralUpsampling< PointInT, PointOutT >::setSigmaDepth ( const float &  sigma_depth) [inline]

Method that sets the sigma depth parameter.

Parameters:
[in]sigma_depththe new value to be set

Definition at line 118 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
void pcl::BilateralUpsampling< PointInT, PointOutT >::setWindowSize ( int  window_size) [inline]

Method that sets the window size for the filter.

Parameters:
[in]window_sizethe given window size

Definition at line 98 of file bilateral_upsampling.h.


Member Data Documentation

template<typename PointInT, typename PointOutT>
Eigen::Matrix3f pcl::BilateralUpsampling< PointInT, PointOutT >::KinectSXGAProjectionMatrix

Definition at line 74 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
Eigen::Matrix3f pcl::BilateralUpsampling< PointInT, PointOutT >::KinectVGAProjectionMatrix

Definition at line 74 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
Eigen::Matrix3f pcl::BilateralUpsampling< PointInT, PointOutT >::projection_matrix_ [private]

Definition at line 148 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
float pcl::BilateralUpsampling< PointInT, PointOutT >::sigma_color_ [private]

Definition at line 147 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
float pcl::BilateralUpsampling< PointInT, PointOutT >::sigma_depth_ [private]

Definition at line 147 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
Eigen::Matrix3f pcl::BilateralUpsampling< PointInT, PointOutT >::unprojection_matrix_ [private]

Definition at line 148 of file bilateral_upsampling.h.

template<typename PointInT, typename PointOutT>
int pcl::BilateralUpsampling< PointInT, PointOutT >::window_size_ [private]

Definition at line 146 of file bilateral_upsampling.h.


The documentation for this class was generated from the following files:


pcl
Author(s): Open Perception
autogenerated on Mon Oct 6 2014 03:19:17