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_ppm(const char *filename) {
39   abort();
40 }
41
42 void RGBImageSubpixel::write_ppm(const char *filename) {
43   abort();
44 }
45
46
47 void RGBImageSubpixel::read_png(const char *filename) {
48   abort();
49 }
50
51 void RGBImageSubpixel::write_png(const char *filename) {
52   RGBImage tmp(_width / _scale, _height / _scale);
53   for(int y = 0; y < _height / _scale; y++) {
54     for(int x = 0; x < _width / _scale; x++) {
55       int sr = 0, sg = 0, sb = 0;
56       for(int yy = y * _scale; yy < (y + 1) * _scale; yy++) {
57         for(int xx = x * _scale; xx < (x + 1) * _scale; xx++) {
58           sr += int(_bit_plans[RED][yy][xx]);
59           sg += int(_bit_plans[GREEN][yy][xx]);
60           sb += int(_bit_plans[BLUE][yy][xx]);
61         }
62       }
63
64       tmp.set_pixel(x, y,
65                     sr / (_scale * _scale), sg / (_scale * _scale), sb / (_scale * _scale));
66     }
67   }
68   tmp.write_png(filename);
69 }
70
71
72 void RGBImageSubpixel::read_jpg(const char *filename) {
73   abort();
74 }
75
76 void RGBImageSubpixel::write_jpg(const char *filename, int quality) {
77   abort();
78 }
79
80
81 void RGBImageSubpixel::draw_line(int thickness,
82                                  unsigned char r, unsigned char g, unsigned char b,
83                                  scalar_t x0, scalar_t y0, scalar_t x1, scalar_t y1) {
84   RGBImage::draw_line(int(thickness * _scale),
85                       r, g, b,
86                       x0 * _scale + _scale/2, y0 * _scale + _scale/2,
87                       x1 * _scale + _scale/2, y1 * _scale + _scale/2);
88 }