gKit2 light
Loading...
Searching...
No Matches
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
15bool is_hdr_image( const char *filename );
16
18Image read_image_pfm( const char *filename );
19
21int write_image_pfm( const Image& image, const char *filename );
22
24bool is_pfm_image( const char *filename );
26
27#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:15
int write_image_pfm(const Image &image, const char *filename)
enregistre une image dans un fichier .pfm.
Definition image_hdr.cpp:58
bool is_pfm_image(const char *filename)
renvoie vrai si le nom de fichier se termine par .pfm.
Definition image_hdr.cpp:83
bool is_hdr_image(const char *filename)
renvoie vrai si le nom de fichier se termine par .hdr.
Definition image_hdr.cpp:10