#include "lvr2/io/HDF5IO.hpp"
#include <boost/range/iterator_range.hpp>
#include <boost/foreach.hpp>
#include <boost/filesystem.hpp>
#include <string>
#include <fstream>
#include <sys/stat.h>
#include "lvr2/io/GeoTIFFIO.hpp"
#include "Options.hpp"
Go to the source code of this file.
Functions | |
int | main (int argc, char **argv) |
int | processConversion (std::string input_filename, std::string position_code, std::string output_filename, size_t min_channel, size_t max_channel) |
Extraction of radiometric data from a given HDF5 file into a new GeoTIFF file in (optionally) given output path. More... | |
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 82 of file src/tools/lvr2_hdf5togeotiff/Main.cpp.
int processConversion | ( | std::string | input_filename, |
std::string | position_code, | ||
std::string | output_filename, | ||
size_t | min_channel, | ||
size_t | max_channel | ||
) |
Extraction of radiometric data from a given HDF5 file into a new GeoTIFF file in (optionally) given output path.
input_filename | Path to the input HDF5 file formatted due to lvr_2 convention |
position_code | 5 character code of the scan position (e.g. 00000) |
output_filename | Path to the output GeoTIFF file |
min_channel | lowest channel to be extracted |
max_channel | highest channel to be extracted |
Definition at line 32 of file src/tools/lvr2_hdf5togeotiff/Main.cpp.