automatic commit
[folded-ctf.git] / image.h
1
2 ///////////////////////////////////////////////////////////////////////////
3 // This program is free software: you can redistribute it and/or modify  //
4 // it under the terms of the version 3 of the GNU General Public License //
5 // as published by the Free Software Foundation.                         //
6 //                                                                       //
7 // This program is distributed in the hope that it will be useful, but   //
8 // WITHOUT ANY WARRANTY; without even the implied warranty of            //
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      //
10 // General Public License for more details.                              //
11 //                                                                       //
12 // You should have received a copy of the GNU General Public License     //
13 // along with this program. If not, see <http://www.gnu.org/licenses/>.  //
14 //                                                                       //
15 // Written by Francois Fleuret                                           //
16 // (C) Idiap Research Institute                                          //
17 //                                                                       //
18 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
19 ///////////////////////////////////////////////////////////////////////////
20
21 /*
22
23   An implementation of a gray-scale image with a minimum set of
24   methods.
25
26  */
27
28 #ifndef IMAGE_H
29 #define IMAGE_H
30
31 #include "storable.h"
32 #include "rgb_image.h"
33 #include "misc.h"
34
35 class Image : public Storable {
36 protected:
37   int _width, _height;
38   unsigned char *_content;
39 public:
40
41   inline int width() { return _width; }
42   inline int height() { return _height; }
43
44   inline unsigned char value(int x, int y) {
45     if(x >= 0 && x < _width && y >= 0 && y < _height)
46       return _content[x + (y * _width)];
47     else
48       return 0;
49   }
50
51   inline void set_value(int x, int y, unsigned char v) {
52     if(x >= 0 && x < _width && y >= 0 && y < _height)
53       _content[x + (y * _width)] = v;
54     else abort();
55   }
56
57   Image();
58   Image(int width, int height);
59
60   virtual ~Image();
61
62   virtual void to_rgb(RGBImage *image);
63
64   virtual void read(istream *in);
65   virtual void write(ostream *out);
66 };
67
68 #endif