*** empty log message ***
[folded-ctf.git] / rgb_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, (C) IDIAP                                //
16 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
17 ///////////////////////////////////////////////////////////////////////////
18
19 // A simple color image class
20
21 #ifndef RGB_IMAGE_H
22 #define RGB_IMAGE_H
23
24 #include "misc.h"
25
26 class RGBImage {
27 protected:
28   int _width, _height;
29   unsigned char ***_bit_plans, **_bit_lines, *_bit_map;
30   static const int RED = 0;
31   static const int GREEN = 1;
32   static const int BLUE = 2;
33   static const int RGB_DEPTH = 3;
34
35   void allocate();
36   void deallocate();
37
38 public:
39
40   RGBImage();
41   RGBImage(int width, int height);
42   RGBImage(RGBImage *image, scalar_t scale);
43   virtual ~RGBImage();
44
45   inline int width() const { return _width; }
46   inline int height() const { return _height; }
47
48   inline void set_pixel(int x, int y, unsigned char r, unsigned char g, unsigned char b) {
49     ASSERT(x >= 0 && x < _width && y >= 0 && y < _height);
50     _bit_plans[RED][y][x] = r;
51     _bit_plans[GREEN][y][x] = g;
52     _bit_plans[BLUE][y][x] = b;
53   }
54
55   inline unsigned char pixel(int x, int y, int d) {
56     ASSERT(x >= 0 && x < _width && y >= 0 && y < _height && d >= 0 && d < RGB_DEPTH);
57     return _bit_plans[d][y][x];
58   }
59
60   virtual void read_ppm(const char *filename);
61   virtual void write_ppm(const char *filename);
62
63   virtual void read_png(const char *filename);
64   virtual void write_png(const char *filename);
65
66   virtual void read_jpg(const char *filename);
67   virtual void write_jpg(const char *filename, int quality);
68
69   virtual void draw_line(int thickness,
70                          unsigned char r, unsigned char g, unsigned char b,
71                          scalar_t x0, scalar_t y0, scalar_t x1, scalar_t y1);
72
73   virtual void draw_ellipse(int thickness,
74                             unsigned char r, unsigned char g, unsigned char b,
75                             scalar_t xc, scalar_t yc, scalar_t radius_1, scalar_t radius_2, scalar_t tilt);
76 };
77
78 #endif