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