automatic commit
[folded-ctf.git] / rgb_image_subpixel.cc
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 #include "rgb_image_subpixel.h"
22
23 RGBImageSubpixel::RGBImageSubpixel(int width, int height) : RGBImage(width * _scale, height* _scale) { }
24
25 RGBImageSubpixel::RGBImageSubpixel(RGBImage *image) : RGBImage(image->width() * _scale, image->height() * _scale) {
26   for(int y = 0; y < _height; y++) {
27     for(int x = 0; x < _width; x++) {
28       set_pixel(x, y,
29                 image->pixel(x / _scale, y / _scale, RGBImage::RED),
30                 image->pixel(x / _scale, y / _scale, RGBImage::GREEN),
31                 image->pixel(x / _scale, y / _scale, RGBImage::BLUE));
32     }
33   }
34 }
35
36 RGBImageSubpixel::~RGBImageSubpixel() { }
37
38 void RGBImageSubpixel::read_png(const char *filename) {
39   abort();
40 }
41
42 void RGBImageSubpixel::write_png(const char *filename) {
43   RGBImage tmp(_width / _scale, _height / _scale);
44   for(int y = 0; y < _height / _scale; y++) {
45     for(int x = 0; x < _width / _scale; x++) {
46       int sr = 0, sg = 0, sb = 0;
47       for(int yy = y * _scale; yy < (y + 1) * _scale; yy++) {
48         for(int xx = x * _scale; xx < (x + 1) * _scale; xx++) {
49           sr += int(_bit_plans[RED][yy][xx]);
50           sg += int(_bit_plans[GREEN][yy][xx]);
51           sb += int(_bit_plans[BLUE][yy][xx]);
52         }
53       }
54
55       tmp.set_pixel(x, y,
56                     sr / (_scale * _scale), sg / (_scale * _scale), sb / (_scale * _scale));
57     }
58   }
59   tmp.write_png(filename);
60 }
61
62
63 void RGBImageSubpixel::read_jpg(const char *filename) {
64   abort();
65 }
66
67 void RGBImageSubpixel::write_jpg(const char *filename, int quality) {
68   abort();
69 }
70
71
72 void RGBImageSubpixel::draw_line(int thickness,
73                                  unsigned char r, unsigned char g, unsigned char b,
74                                  scalar_t x0, scalar_t y0, scalar_t x1, scalar_t y1) {
75   RGBImage::draw_line(int(thickness * _scale),
76                       r, g, b,
77                       x0 * _scale + _scale/2, y0 * _scale + _scale/2,
78                       x1 * _scale + _scale/2, y1 * _scale + _scale/2);
79 }