Elaboradar  0.1
 Tutto Classi Namespace File Funzioni Variabili Tipi enumerati (enum) Gruppi
image.h
Vai alla documentazione di questo file.
1 
5 #ifndef RADARELAB_IMAGE_H
6 #define RADARELAB_IMAGE_H
7 
8 #include <radarelab/matrix.h>
9 #include <stdexcept>
10 #include <string>
11 
12 namespace radarelab {
13 
18 void gdal_init_once();
19 
20 template<typename T>
21 void write_image(const Matrix2D<T>& image, const std::string& fname, const std::string& format);
22 
23 std::string gdal_extension_for_format(const std::string& format);
24 
25 }
26 
27 #endif
void gdal_init_once()
Initialize the GDAL library when called for the first time; does nothing all other times...
Definition: image.cpp:12