Elaboradar 0.1
Caricamento in corso...
Ricerca in corso...
Nessun risultato
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
12namespace radarelab {
13
18void gdal_init_once();
19
20template<typename T>
21void write_image(const Matrix2D<T>& image, const std::string& fname, const std::string& format);
22
23std::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
String functions.
Definition: cart.cpp:4