Point Cloud Library (PCL)  1.14.0-dev
List of all members | Public Member Functions
pcl::io::MedianBuffer< T > Class Template Reference

A buffer that computes running window median of the data inserted. More...

#include <pcl/io/buffers.h>

+ Inheritance diagram for pcl::io::MedianBuffer< T >:
+ Collaboration diagram for pcl::io::MedianBuffer< T >:

Public Member Functions

 MedianBuffer (std::size_t size, unsigned char window_size)
 Construct a buffer of given size with given running window size. More...
 
 ~MedianBuffer () override
 
operator[] (std::size_t idx) const override
 Access an element at a given index. More...
 
void push (std::vector< T > &data) override
 Insert a new chunk of data into the buffer. More...
 
- Public Member Functions inherited from pcl::io::Buffer< T >
virtual ~Buffer ()
 
std::size_t size () const
 Get the size of the buffer. More...
 

Additional Inherited Members

- Public Types inherited from pcl::io::Buffer< T >
using value_type = T
 
- Protected Member Functions inherited from pcl::io::Buffer< T >
 Buffer (std::size_t size)
 
- Protected Attributes inherited from pcl::io::Buffer< T >
const std::size_t size_
 

Detailed Description

template<typename T>
class pcl::io::MedianBuffer< T >

A buffer that computes running window median of the data inserted.

The buffer and window sizes are specified at construction time. The buffer size defines the number of elements in each data chunk that is inserted in the buffer. The window size is the number of last data chunks that are considered for median computation. The median is computed separately for 1st, 2nd, etc. element in data chunks.

The data can contain invalid elements. For integral types zeros are assumed to be invalid elements, whereas for floating-point types it is quiet NaN. Invalid elements are ignored when computing median.

The buffer is thread-safe.

Definition at line 143 of file buffers.h.

Constructor & Destructor Documentation

◆ MedianBuffer()

template<typename T >
pcl::io::MedianBuffer< T >::MedianBuffer ( std::size_t  size,
unsigned char  window_size 
)

Construct a buffer of given size with given running window size.

Parameters
[in]sizebuffer size
[in]window_sizerunning window size over which the median value should be computed (0..255)

Definition at line 112 of file buffers.hpp.

References pcl::io::Buffer< T >::size_.

◆ ~MedianBuffer()

template<typename T >
pcl::io::MedianBuffer< T >::~MedianBuffer ( )
overridedefault

Member Function Documentation

◆ operator[]()

template<typename T >
T pcl::io::MedianBuffer< T >::operator[] ( std::size_t  idx) const
overridevirtual

Access an element at a given index.

This operation is constant time.

Implements pcl::io::Buffer< T >.

Definition at line 142 of file buffers.hpp.

◆ push()

template<typename T >
void pcl::io::MedianBuffer< T >::push ( std::vector< T > &  data)
overridevirtual

Insert a new chunk of data into the buffer.

This operation is linear in buffer size and window size.

Parameters
[in]datainput data chunk, the memory will be "stolen"

Implements pcl::io::Buffer< T >.

Definition at line 150 of file buffers.hpp.

References buffer_traits< T >::is_invalid().


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