X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=image.cc;fp=image.cc;h=e9eb83fed29b0d0ee0229d3e3ff503038f0107ab;hb=d922ad61d35e9a6996730bec24b16f8bf7bc426c;hp=0000000000000000000000000000000000000000;hpb=3bb118f5a9462d02ff7d99ef28ecc0d7e23529f9;p=folded-ctf.git diff --git a/image.cc b/image.cc new file mode 100644 index 0000000..e9eb83f --- /dev/null +++ b/image.cc @@ -0,0 +1,74 @@ + +/////////////////////////////////////////////////////////////////////////// +// This program is free software: you can redistribute it and/or modify // +// it under the terms of the version 3 of the GNU General Public License // +// as published by the Free Software Foundation. // +// // +// This program is distributed in the hope that it will be useful, but // +// WITHOUT ANY WARRANTY; without even the implied warranty of // +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // +// General Public License for more details. // +// // +// You should have received a copy of the GNU General Public License // +// along with this program. If not, see . // +// // +// Written by Francois Fleuret, (C) IDIAP // +// Contact for comments & bug reports // +/////////////////////////////////////////////////////////////////////////// + +#include "image.h" + +Image::Image(int width, int height) { + _width = width; + _height = height; + _content = new unsigned char[_width * _height]; +} + +Image::Image() { + _width = 0; + _height = 0; + _content = 0; +} + +Image::~Image() { + delete[] _content; +} + +void Image::crop(int xmin, int ymin, int width, int height) { + ASSERT(xmin >= 0 && xmin + width <= _width && + ymin >= 0 && ymin + height <= _height); + unsigned char *new_content = new unsigned char[width * height]; + for(int y = 0; y < height; y++) { + for(int x = 0; x < width; x++) { + new_content[x + (y * width)] = _content[x + xmin + _width * (y + ymin)]; + } + } + delete[] _content; + _content = new_content; + _width = width; + _height = height; +} + +void Image::to_rgb(RGBImage *image) { + int c; + for(int y = 0; y < _height; y++) { + for(int x = 0; x < _width; x++) { + c = value(x, y); + image->set_pixel(x, y, c, c, c); + } + } +} + +void Image::read(istream *in) { + delete[] _content; + read_var(in, &_width); + read_var(in, &_height); + _content = new unsigned char[_width * _height]; + in->read((char *) _content, sizeof(unsigned char) * _width * _height); +} + +void Image::write(ostream *out) { + write_var(out, &_width); + write_var(out, &_height); + out->write((char *) _content, sizeof(unsigned char) * _width * _height); +}