gKit2 light
image_hdr.h
Go to the documentation of this file.
1 
2 #ifndef _IMAGE_HDR_H
3 #define _IMAGE_HDR_H
4 
5 #include "image.h"
6 
7 
9 
10 
13 
16 Image read_image_hdr( const char *filename );
17 
19 int write_image_hdr( const Image& image, const char *filename );
20 
22 bool is_hdr_image( const char *filename );
23 
25 Image read_image_pfm( const char *filename );
26 
28 int write_image_pfm( const Image& image, const char *filename );
29 
31 bool is_pfm_image( const char *filename );
33 
34 #endif
representation d'une image.
Definition: image.h:21
Image read_image_pfm(const char *filename)
charge une image a partir d'un fichier .pfm.
Definition: image_hdr.cpp:103
int write_image_pfm(const Image &image, const char *filename)
enregistre une image dans un fichier .pfm.
Definition: image_hdr.cpp:146
bool is_pfm_image(const char *filename)
renvoie vrai si le nom de fichier se termine par .pfm.
Definition: image_hdr.cpp:171
bool is_hdr_image(const char *filename)
renvoie vrai si le nom de fichier se termine par .hdr.
Definition: image_hdr.cpp:10
Image read_image_hdr(const char *filename)
Definition: image_hdr.cpp:16
int write_image_hdr(const Image &image, const char *filename)
enregistre une image dans un fichier .hdr.
Definition: image_hdr.cpp:56