#include <pcl/compression/libpng_wrapper.h>
#include <png.h>
#include <zlib.h>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <assert.h>
Go to the source code of this file.
Namespaces | |
namespace | pcl |
namespace | pcl::io |
Functions | |
template<typename T > | |
void | pcl::io::decodePNGImage (typename std::vector< uint8_t > &pngData_arg, typename std::vector< T > &imageData_arg, size_t &width_arg, size_t &height_arg, unsigned int &channels_arg) |
template<typename T > | |
void | pcl::io::encodeImageToPNG (typename std::vector< T > &image_arg, size_t width_arg, size_t height_arg, int image_format_arg, typename std::vector< uint8_t > &pngData_arg, int png_level_arg) |