AdaptiveRangeCoder compression class More...
#include <pcl/compression/entropy_range_coder.h>
Public Member Functions | |
| AdaptiveRangeCoder () | |
| Empty constructor. | |
| virtual | ~AdaptiveRangeCoder () |
| Empty deconstructor. | |
| unsigned long | encodeCharVectorToStream (const std::vector< char > &inputByteVector_arg, std::ostream &outputByteStream_arg) |
| Encode char vector to output stream. | |
| unsigned long | decodeStreamToCharVector (std::istream &inputByteStream_arg, std::vector< char > &outputByteVector_arg) |
| Decode char stream to output vector. | |
Protected Types | |
| typedef boost::uint32_t | DWord |
AdaptiveRangeCoder compression class
Definition at line 68 of file entropy_range_coder.h.
typedef boost::uint32_t pcl::AdaptiveRangeCoder::DWord [protected] |
Definition at line 101 of file entropy_range_coder.h.
| pcl::AdaptiveRangeCoder::AdaptiveRangeCoder | ( | ) | [inline] |
Empty constructor.
Definition at line 74 of file entropy_range_coder.h.
| virtual pcl::AdaptiveRangeCoder::~AdaptiveRangeCoder | ( | ) | [inline, virtual] |
Empty deconstructor.
Definition at line 80 of file entropy_range_coder.h.
| unsigned long pcl::AdaptiveRangeCoder::decodeStreamToCharVector | ( | std::istream & | inputByteStream_arg, | |
| std::vector< char > & | outputByteVector_arg | |||
| ) |
Decode char stream to output vector.
| inputByteStream_arg | input stream of compressed data | |
| outputByteVector_arg | decompressed output vector |
Definition at line 143 of file entropy_range_coder.hpp.
| unsigned long pcl::AdaptiveRangeCoder::encodeCharVectorToStream | ( | const std::vector< char > & | inputByteVector_arg, | |
| std::ostream & | outputByteStream_arg | |||
| ) |
Encode char vector to output stream.
| inputByteVector_arg | input vector | |
| outputByteStream_arg | output stream containing compressed data |
Definition at line 55 of file entropy_range_coder.hpp.