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                                           //
16 // (C) Idiap Research Institute                                          //
17 //                                                                       //
18 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
19 ///////////////////////////////////////////////////////////////////////////
20
21 // A simple color image class
22
23 #ifndef RGB_IMAGE_SUBPIXEL_H
24 #define RGB_IMAGE_SUBPIXEL_H
25
26 #include "misc.h"
27 #include "rgb_image.h"
28
29 class RGBImageSubpixel : public RGBImage {
30   static const int _scale = 8;
31 public:
32
33   RGBImageSubpixel(int width, int height);
34   RGBImageSubpixel(RGBImage *image);
35   virtual ~RGBImageSubpixel();
36
37   inline int width() const { return _width / _scale; }
38   inline int height() const { return _height / _scale; }
39
40   virtual void read_ppm(const char *filename);
41   virtual void write_ppm(const char *filename);
42
43   virtual void read_png(const char *filename);
44   virtual void write_png(const char *filename);
45
46   virtual void read_jpg(const char *filename);
47   virtual void write_jpg(const char *filename, int quality);
48
49   virtual void draw_line(int thickness,
50                          unsigned char r, unsigned char g, unsigned char b,
51                          scalar_t x0, scalar_t y0, scalar_t x1, scalar_t y1);
52 };
53
54 #endif