automatic commit
[folded-ctf.git] / rgb_image_subpixel.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_SUBPIXEL_H
22 #define RGB_IMAGE_SUBPIXEL_H
23
24 #include "misc.h"
25 #include "rgb_image.h"
26
27 class RGBImageSubpixel : public RGBImage {
28   static const int _scale = 8;
29 public:
30
31   RGBImageSubpixel(int width, int height);
32   RGBImageSubpixel(RGBImage *image);
33   virtual ~RGBImageSubpixel();
34
35   inline int width() const { return _width / _scale; }
36   inline int height() const { return _height / _scale; }
37
38   virtual void read_ppm(const char *filename);
39   virtual void write_ppm(const char *filename);
40
41   virtual void read_png(const char *filename);
42   virtual void write_png(const char *filename);
43
44   virtual void read_jpg(const char *filename);
45   virtual void write_jpg(const char *filename, int quality);
46
47   virtual void draw_line(int thickness,
48                          unsigned char r, unsigned char g, unsigned char b,
49                          scalar_t x0, scalar_t y0, scalar_t x1, scalar_t y1);
50 };
51
52 #endif