|
| int | se::save_depth_png (const float *depth_image_data, const Eigen::Vector2i &depth_image_res, const std::string &filename, const float scale=1000.0f) |
| | Save a depth image with depth values in metres to a PNG. More...
|
| |
| int | se::save_depth_png (const uint16_t *depth_image_data, const Eigen::Vector2i &depth_image_res, const std::string &filename) |
| | Save a depth image with depth values in millimetres to a PNG. More...
|
| |
| int | se::load_depth_png (float **depth_image_data, Eigen::Vector2i &depth_image_res, const std::string &filename, const float inverse_scale=1.0f/1000.0f) |
| | Load a PNG depth image into a buffer with depth values in metres. More...
|
| |
| int | se::load_depth_png (uint16_t **depth_image_data, Eigen::Vector2i &depth_image_res, const std::string &filename) |
| | Load a PNG depth image into a buffer with depth values in millimetres. More...
|
| |
| int | se::save_depth_pgm (const float *depth_image_data, const Eigen::Vector2i &depth_image_res, const std::string &filename, const float scale=1000.0f) |
| | Save a depth image with depth values in metres to a P2 PGM. More...
|
| |
| int | se::save_depth_pgm (const uint16_t *depth_image_data, const Eigen::Vector2i &depth_image_res, const std::string &filename) |
| | Save a depth image with depth values in millimetres to a P2 PGM. More...
|
| |
| int | se::load_depth_pgm (float **depth_image_data, Eigen::Vector2i &depth_image_res, const std::string &filename, const float inverse_scale=1.0f/1000.0f) |
| | Load a P2 PGM depth image into a buffer with depth values in metres. More...
|
| |
| int | se::load_depth_pgm (uint16_t **depth_image_data, Eigen::Vector2i &depth_image_res, const std::string &filename) |
| | Load a P2 PGM depth image into a buffer with depth values in millimeters. More...
|
| |
| static Eigen::Vector2i | se::round_pixel (const Eigen::Vector2f &pixel_f) |
| |