2014-06-18 08:47:10 +02:00
|
|
|
#include <string>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
2014-07-07 23:31:59 +02:00
|
|
|
#include <iomanip>
|
2014-06-22 15:50:42 +02:00
|
|
|
#include <sstream>
|
2014-06-18 08:47:10 +02:00
|
|
|
#include <cmath>
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstring>
|
2014-06-24 19:14:59 +02:00
|
|
|
#include <chrono>
|
2014-07-03 23:53:06 +02:00
|
|
|
#include <cstdlib>
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-29 17:17:19 +02:00
|
|
|
#include <xmmintrin.h>
|
2014-07-03 23:53:06 +02:00
|
|
|
#include <emmintrin.h>
|
2014-06-29 17:17:19 +02:00
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2014-07-03 23:53:06 +02:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Point
|
|
|
|
//
|
2014-06-22 15:50:42 +02:00
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
template <typename T>
|
|
|
|
struct TPoint {
|
|
|
|
T x;
|
|
|
|
T y;
|
|
|
|
|
|
|
|
TPoint(T a, T b)
|
|
|
|
: x(a)
|
|
|
|
, y(b)
|
|
|
|
{}
|
|
|
|
};
|
2014-07-03 23:53:06 +02:00
|
|
|
|
2014-06-26 19:18:32 +02:00
|
|
|
typedef TPoint<int> Point;
|
2014-06-18 08:47:10 +02:00
|
|
|
typedef TPoint<double> DPoint; // absolute point, can be negative
|
|
|
|
template<typename Elem, typename Traits, typename T>
|
2014-07-03 23:53:06 +02:00
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
std::basic_ostream<Elem, Traits>& operator << (std::basic_ostream<Elem, Traits>& o, TPoint<T> const& p)
|
|
|
|
{
|
|
|
|
o << "(" << p.x << ", " << p.y << ")";
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-07-06 23:47:21 +02:00
|
|
|
struct PackedPixel {
|
|
|
|
uint32_t r;
|
|
|
|
uint32_t g;
|
|
|
|
uint32_t b;
|
|
|
|
|
|
|
|
PackedPixel()
|
|
|
|
: r(0)
|
|
|
|
, g(0)
|
|
|
|
, b(0)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
uint8_t interpolate_packed(uint32_t pack, double x, double x_inv, double y, double y_inv)
|
|
|
|
{
|
|
|
|
return (((pack >> 24) & 0x000f) * x_inv + ((pack >> 16) & 0x000f) * x) * y_inv
|
|
|
|
+ (((pack >> 8) & 0x000f) * x_inv + (pack & 0x000f) * x) * y;
|
|
|
|
}
|
|
|
|
|
2014-07-03 23:53:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Image
|
|
|
|
//
|
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
struct Image {
|
|
|
|
unsigned int width;
|
|
|
|
unsigned int height;
|
2014-06-28 13:52:24 +02:00
|
|
|
uint8_t* buffer;
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
Image()
|
|
|
|
: width(0)
|
|
|
|
, height(0)
|
2014-06-28 13:52:24 +02:00
|
|
|
, buffer(NULL)
|
2014-06-18 08:47:10 +02:00
|
|
|
{}
|
|
|
|
|
2014-07-03 23:53:06 +02:00
|
|
|
virtual ~Image()
|
|
|
|
{
|
|
|
|
delete [] buffer;
|
|
|
|
}
|
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
Image(unsigned int w, unsigned int h)
|
|
|
|
{
|
|
|
|
this->width = w;
|
|
|
|
this->height = h;
|
2014-06-28 13:52:24 +02:00
|
|
|
buffer = new uint8_t[width * height * 3];
|
|
|
|
memset(buffer, 0, width * height * 3 * sizeof (uint8_t));
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Image(string const& path)
|
|
|
|
: Image()
|
|
|
|
{
|
|
|
|
ifstream is(path);
|
|
|
|
if (!is.is_open())
|
|
|
|
{
|
|
|
|
cerr << "Cannot open file '" << path << "'" << endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->read_header(is))
|
|
|
|
{
|
|
|
|
cerr << "Invalid header." << endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->read_body(is))
|
|
|
|
{
|
2014-06-28 13:52:24 +02:00
|
|
|
delete buffer;
|
|
|
|
buffer = nullptr;
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
cerr << "Invalid header." << endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
bool save(string const& path) const
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
|
|
|
ofstream os(path);
|
|
|
|
if (!os.is_open())
|
|
|
|
{
|
|
|
|
cerr << "Cannot open file '" << path << "'" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this->write_header(os);
|
|
|
|
this->write_body(os);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_pixel(unsigned int x, unsigned int y, uint8_t r, uint8_t g, uint8_t b)
|
|
|
|
{
|
2014-06-22 15:50:42 +02:00
|
|
|
if (x >= width || y >= height)
|
|
|
|
{
|
2014-06-28 13:52:24 +02:00
|
|
|
// cerr << __LINE__ << " | Point (" << x << ", " << y << ") out of bounds" << endl;
|
|
|
|
// cerr << " Image dimensions: " << width << " x " << height << endl;
|
2014-06-26 23:45:02 +02:00
|
|
|
// assert(false);
|
|
|
|
return;
|
2014-06-22 15:50:42 +02:00
|
|
|
}
|
2014-06-28 13:52:24 +02:00
|
|
|
int index = (y * width + x) * 3;
|
|
|
|
buffer[index++] = r;
|
|
|
|
buffer[index++] = g;
|
|
|
|
buffer[index++] = b;
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
2014-06-24 00:59:04 +02:00
|
|
|
void set_pixel(Point const& p, uint8_t r, uint8_t g, uint8_t b)
|
|
|
|
{
|
|
|
|
this->set_pixel(p.x, p.y, r, g, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
protected:
|
2014-06-18 08:47:10 +02:00
|
|
|
bool read_header(std::ifstream& istr)
|
|
|
|
{
|
|
|
|
// check magic
|
|
|
|
if (istr.get() != 'P' )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
char type = static_cast<char>(istr.get());
|
|
|
|
if (type != '6')
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (istr.get() != '\n')
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip comments
|
|
|
|
while (istr.peek() == '#')
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
std::getline(istr, line);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get size
|
|
|
|
istr >> width >> height;
|
|
|
|
if (width == 0 || height == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get maxvalue
|
|
|
|
if (istr.get() != '\n')
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int max_value = -1;
|
|
|
|
istr >> max_value;
|
|
|
|
if (max_value > 255)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (istr.get() != '\n')
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-06-24 00:59:04 +02:00
|
|
|
// cout << "width: " << width << endl;
|
|
|
|
// cout << "height: " << height << endl;
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
bool write_header(std::ofstream& ostr) const
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
|
|
|
ostr << "P6" << endl;
|
|
|
|
ostr << width << " " << height << endl;
|
|
|
|
ostr << "255" << endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
virtual bool read_body(std::ifstream& istr)
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-28 13:52:24 +02:00
|
|
|
unsigned int const nb_pixels = width * height;
|
|
|
|
buffer = new uint8_t[nb_pixels * 3];
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
uint8_t* buf_index = buffer;
|
|
|
|
for (unsigned int i = 0; i < nb_pixels * 3; ++i)
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-28 13:52:24 +02:00
|
|
|
*buf_index = istr.get();
|
|
|
|
++buf_index;
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
virtual bool write_body(std::ofstream& ostr) const
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-28 13:52:24 +02:00
|
|
|
unsigned int const nb_pixels = width * height;
|
|
|
|
uint8_t* buf_index = buffer;
|
|
|
|
for (unsigned int i = 0; i < nb_pixels * 3; ++i)
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-28 13:52:24 +02:00
|
|
|
ostr << (char) *buf_index;
|
|
|
|
++buf_index;
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
2014-06-28 13:52:24 +02:00
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
template<unsigned int W, unsigned int H>
|
|
|
|
struct TiledImage : public Image {
|
2014-07-09 07:50:09 +02:00
|
|
|
uint8_t* tiles;
|
2014-07-01 21:52:40 +02:00
|
|
|
unsigned int static const tile_w = W;
|
|
|
|
unsigned int static const tile_h = H;
|
|
|
|
unsigned int static const tile_size = W * H;
|
|
|
|
unsigned int nb_col_tile;
|
|
|
|
unsigned int nb_row_tile;
|
|
|
|
|
|
|
|
TiledImage()
|
|
|
|
: Image()
|
|
|
|
, tiles(NULL)
|
|
|
|
, nb_col_tile(0)
|
|
|
|
, nb_row_tile(0)
|
|
|
|
{}
|
|
|
|
|
2014-07-03 23:53:06 +02:00
|
|
|
~TiledImage()
|
|
|
|
{
|
|
|
|
delete [] tiles;
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
TiledImage(unsigned int w, unsigned int h)
|
|
|
|
{
|
|
|
|
allocate_memory(w, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
TiledImage(string const& path)
|
|
|
|
: TiledImage()
|
|
|
|
{
|
|
|
|
ifstream is(path);
|
|
|
|
if (!is.is_open())
|
|
|
|
{
|
|
|
|
cerr << "Cannot open file '" << path << "'" << endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->read_header(is))
|
|
|
|
{
|
|
|
|
cerr << "Invalid header." << endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->read_body(is))
|
|
|
|
{
|
|
|
|
// TODO: delete tiles
|
|
|
|
cerr << "Invalid header." << endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-02 21:54:52 +02:00
|
|
|
uint8_t*
|
|
|
|
access_pixel(unsigned int x, unsigned int y)
|
|
|
|
{
|
|
|
|
if (x >= width || y >= height)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
unsigned int const tile_width = tile_w * 3;
|
|
|
|
|
|
|
|
unsigned int const tile_index = (y / tile_h) * nb_col_tile + (x / tile_w);
|
2014-07-09 07:50:09 +02:00
|
|
|
uint8_t* tile = tiles + tile_index * tile_size * 3;
|
2014-07-02 21:54:52 +02:00
|
|
|
unsigned int const tile_j = y % tile_h;
|
|
|
|
unsigned int const tile_i = x % tile_w;
|
|
|
|
return tile + tile_j * tile_width + (tile_i * 3);
|
|
|
|
}
|
|
|
|
|
2014-07-09 07:50:09 +02:00
|
|
|
uint8_t const*
|
|
|
|
get_tile(unsigned int index) const
|
|
|
|
{
|
|
|
|
if (index >= nb_col_tile * nb_row_tile)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return tiles + index * tile_size * 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t*
|
|
|
|
get_tile(unsigned int index)
|
|
|
|
{
|
|
|
|
if (index >= nb_col_tile * nb_row_tile)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return tiles + index * tile_size * 3;
|
|
|
|
}
|
|
|
|
|
2014-07-02 21:54:52 +02:00
|
|
|
uint8_t const*
|
|
|
|
access_pixel(unsigned int x, unsigned int y) const
|
|
|
|
{
|
|
|
|
if (x >= width || y >= height)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
unsigned int const tile_width = tile_w * 3;
|
|
|
|
|
|
|
|
unsigned int const tile_index = (y / tile_h) * nb_col_tile + (x / tile_w);
|
2014-07-09 07:50:09 +02:00
|
|
|
const uint8_t* tile = this->get_tile(tile_index);
|
2014-07-02 21:54:52 +02:00
|
|
|
unsigned int const tile_j = y % tile_h;
|
|
|
|
unsigned int const tile_i = x % tile_w;
|
|
|
|
return tile + tile_j * tile_width + (tile_i * 3);
|
|
|
|
}
|
|
|
|
|
2014-07-06 23:47:21 +02:00
|
|
|
PackedPixel
|
|
|
|
get_packed_pixels(unsigned int x, unsigned int y) const
|
|
|
|
{
|
|
|
|
PackedPixel pack;
|
|
|
|
|
|
|
|
this->insert_pixel(pack, x, y);
|
|
|
|
pack.r = pack.r << 8;
|
|
|
|
pack.g = pack.g << 8;
|
|
|
|
pack.b = pack.b << 8;
|
|
|
|
|
|
|
|
this->insert_pixel(pack, x + 1, y);
|
|
|
|
pack.r = pack.r << 8;
|
|
|
|
pack.g = pack.g << 8;
|
|
|
|
pack.b = pack.b << 8;
|
|
|
|
|
|
|
|
this->insert_pixel(pack, x, y + 1);
|
|
|
|
pack.r = pack.r << 8;
|
|
|
|
pack.g = pack.g << 8;
|
|
|
|
pack.b = pack.b << 8;
|
|
|
|
|
|
|
|
this->insert_pixel(pack, x + 1, y + 1);
|
|
|
|
|
|
|
|
return pack;
|
|
|
|
}
|
|
|
|
|
2014-07-02 21:54:52 +02:00
|
|
|
void
|
|
|
|
print_tile(unsigned int index) const
|
|
|
|
{
|
|
|
|
cout << "Tile[" << index << "]" << endl;
|
2014-07-09 07:50:09 +02:00
|
|
|
uint8_t const* tile = this->get_tile(index);
|
2014-07-02 21:54:52 +02:00
|
|
|
unsigned int const tile_width = tile_w * 3;
|
|
|
|
for (unsigned int j = 0; j < tile_h; ++j)
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < tile_w; ++i)
|
|
|
|
{
|
|
|
|
if (i != 0)
|
|
|
|
cout << ", ";
|
|
|
|
uint8_t const* p = tile + j * tile_width + i * 3;
|
|
|
|
cout << (int) *p << " " << (int) *(p + 1) << " " << (int) *(p + 2);
|
|
|
|
|
|
|
|
}
|
|
|
|
cout << endl;
|
|
|
|
}
|
|
|
|
cout << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
protected:
|
2014-07-06 23:47:21 +02:00
|
|
|
void insert_pixel(PackedPixel& pack, unsigned int x, unsigned int y) const
|
|
|
|
{
|
|
|
|
unsigned int const tile_width = tile_w * 3;
|
|
|
|
unsigned int const tile_index = (y / tile_h) * nb_col_tile + (x / tile_w);
|
|
|
|
if (tile_index >= nb_col_tile * nb_row_tile)
|
|
|
|
return;
|
|
|
|
uint8_t const* tile = tiles[tile_index];
|
|
|
|
unsigned int const tile_j = y % tile_h;
|
|
|
|
unsigned int const tile_i = x % tile_w;
|
|
|
|
unsigned int index = tile_j * tile_width + (tile_i * 3);
|
|
|
|
pack.r += tile[index];
|
|
|
|
pack.g += tile[index + 1] + 1;
|
|
|
|
pack.b += tile[index + 2] + 1;
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:52:40 +02:00
|
|
|
void allocate_memory(unsigned int w, unsigned int h)
|
|
|
|
{
|
|
|
|
width = w;
|
|
|
|
height = h;
|
|
|
|
|
|
|
|
nb_col_tile = width / tile_w;
|
|
|
|
if (width % tile_w != 0)
|
|
|
|
++nb_col_tile;
|
|
|
|
|
|
|
|
nb_row_tile = height / tile_h;
|
|
|
|
if (height % tile_h != 0)
|
|
|
|
++nb_row_tile;
|
|
|
|
|
|
|
|
unsigned int const nb_tiles = nb_col_tile * nb_row_tile;
|
2014-07-09 07:50:09 +02:00
|
|
|
tiles = new uint8_t[nb_tiles * tile_size * 3];
|
|
|
|
memset(tiles, 0, nb_tiles * tile_size * 3 * sizeof (uint8_t));
|
2014-07-01 21:52:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool read_body(std::ifstream& istr)
|
|
|
|
{
|
|
|
|
this->allocate_memory(width, height);
|
|
|
|
|
|
|
|
// Pixel loading
|
|
|
|
for (unsigned int j = 0; j < height; ++j)
|
|
|
|
for (unsigned int i = 0; i < width; ++i)
|
|
|
|
{
|
2014-07-02 21:54:52 +02:00
|
|
|
uint8_t* tile = this->access_pixel(i, j);
|
2014-07-01 21:52:40 +02:00
|
|
|
*(tile++) = istr.get();
|
|
|
|
*(tile++) = istr.get();
|
|
|
|
*(tile++) = istr.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool write_body(std::ofstream& ostr) const override
|
|
|
|
{
|
|
|
|
for (unsigned int j = 0; j < height; ++j)
|
|
|
|
for (unsigned int i = 0; i < width; ++i)
|
|
|
|
{
|
2014-07-02 21:54:52 +02:00
|
|
|
uint8_t const* tile = this->access_pixel(i, j);
|
2014-07-01 21:52:40 +02:00
|
|
|
ostr << (char) *(tile++);
|
|
|
|
ostr << (char) *(tile++);
|
|
|
|
ostr << (char) *(tile++);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-22 15:50:42 +02:00
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
//
|
|
|
|
//
|
2014-06-22 15:50:42 +02:00
|
|
|
// Trigonometry
|
2014-06-18 08:47:10 +02:00
|
|
|
//
|
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
DPoint convert_grid_coord(Image const& img, Point const& p)
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-22 15:50:42 +02:00
|
|
|
return DPoint(p.x - img.width / 2.0f + 0.5, p.y - img.height / 2.0f + 0.5);
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
double convert_radian(Image const& img, Point const& p, double const ratio)
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-22 15:50:42 +02:00
|
|
|
DPoint centered = convert_grid_coord(img, p);
|
|
|
|
double const cos_value = centered.x * ratio;
|
|
|
|
double const sin_value = - (centered.y * ratio);
|
2014-06-18 08:47:10 +02:00
|
|
|
double angle = acos(cos_value);
|
|
|
|
if (sin_value < 0)
|
2014-06-24 00:59:04 +02:00
|
|
|
{
|
|
|
|
angle = (2 * M_PI) - angle;
|
|
|
|
}
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
return angle;
|
|
|
|
}
|
|
|
|
|
2014-06-22 15:50:42 +02:00
|
|
|
DPoint convert_abs_coord(double const angle, double const ratio)
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-24 19:14:59 +02:00
|
|
|
return DPoint(cos(angle) / ratio, - sin(angle) / ratio);
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
Point convert_img_coord(Image const& img, DPoint const& p)
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-22 15:50:42 +02:00
|
|
|
int x = round(p.x + (img.width / 2.0f) - 0.5);
|
|
|
|
int y = round(p.y + (img.height / 2.0f) - 0.5);
|
2014-06-28 13:52:24 +02:00
|
|
|
return Point(x, y);
|
2014-06-24 19:14:59 +02:00
|
|
|
}
|
2014-06-22 15:50:42 +02:00
|
|
|
|
2014-06-26 19:18:32 +02:00
|
|
|
DPoint convert_img_coord_precision(Image const& img, DPoint const& p)
|
|
|
|
{
|
2014-07-07 23:19:57 +02:00
|
|
|
double x = p.x + (img.width / 2.0f) - 0.5;
|
|
|
|
double y = p.y + (img.height / 2.0f) - 0.5;
|
2014-06-26 19:18:32 +02:00
|
|
|
return DPoint(x, y);
|
|
|
|
}
|
|
|
|
|
2014-06-24 19:14:59 +02:00
|
|
|
void convert_abs_to_polar_coord(DPoint const& p, double& angle, double& dist)
|
|
|
|
{
|
2014-06-26 19:18:32 +02:00
|
|
|
angle = atan2(-p.y, p.x);
|
2014-06-24 19:14:59 +02:00
|
|
|
dist = sqrt(p.x * p.x + p.y * p.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
DPoint convert_polar_to_grid_coord(double const angle, double const distance)
|
|
|
|
{
|
2014-06-26 19:18:32 +02:00
|
|
|
return DPoint(cos(angle) * distance, - (sin(angle) * distance));
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
double compute_ratio(Image const& img)
|
|
|
|
{
|
2014-06-24 00:59:04 +02:00
|
|
|
double const trigo_length = (sqrt(img.width * img.width + img.height * img.height) - 1) / 2;
|
2014-06-18 08:47:10 +02:00
|
|
|
return 1.0f / trigo_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
void compute_output_size(Image const& src, double const rotation, unsigned int& width, unsigned int& height)
|
|
|
|
{
|
|
|
|
double const ratio = compute_ratio(src);
|
2014-06-22 15:50:42 +02:00
|
|
|
double min_w = 0;
|
|
|
|
double max_w = 0;
|
|
|
|
double min_h = 0;
|
|
|
|
double max_h = 0;
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
Point p(0, 0);
|
2014-06-18 08:47:10 +02:00
|
|
|
double angle = convert_radian(src, p, ratio);
|
2014-06-22 15:50:42 +02:00
|
|
|
DPoint tl = convert_abs_coord(angle + rotation, ratio);
|
2014-06-18 08:47:10 +02:00
|
|
|
min_w = min(min_w, tl.x);
|
|
|
|
max_w = max(max_w, tl.x);
|
|
|
|
min_h = min(min_h, tl.y);
|
|
|
|
max_h = max(max_h, tl.y);
|
|
|
|
|
|
|
|
p = Point(src.width - 1, 0);
|
|
|
|
angle = convert_radian(src, p, ratio);
|
2014-06-22 15:50:42 +02:00
|
|
|
DPoint tr = convert_abs_coord(angle + rotation, ratio);
|
2014-06-18 08:47:10 +02:00
|
|
|
min_w = min(min_w, tr.x);
|
|
|
|
max_w = max(max_w, tr.x);
|
|
|
|
min_h = min(min_h, tr.y);
|
|
|
|
max_h = max(max_h, tr.y);
|
|
|
|
|
|
|
|
p = Point(0, src.height - 1);
|
|
|
|
angle = convert_radian(src, p, ratio);
|
2014-06-22 15:50:42 +02:00
|
|
|
DPoint bl = convert_abs_coord(angle + rotation, ratio);
|
2014-06-18 08:47:10 +02:00
|
|
|
min_w = min(min_w, bl.x);
|
|
|
|
max_w = max(max_w, bl.x);
|
|
|
|
min_h = min(min_h, bl.y);
|
|
|
|
max_h = max(max_h, bl.y);
|
|
|
|
|
|
|
|
p = Point(src.width - 1, src.height - 1);
|
|
|
|
angle = convert_radian(src, p, ratio);
|
2014-06-22 15:50:42 +02:00
|
|
|
DPoint br = convert_abs_coord(angle + rotation, ratio);
|
2014-06-18 08:47:10 +02:00
|
|
|
min_w = min(min_w, br.x);
|
|
|
|
max_w = max(max_w, br.x);
|
|
|
|
min_h = min(min_h, br.y);
|
|
|
|
max_h = max(max_h, br.y);
|
|
|
|
|
2014-06-22 15:50:42 +02:00
|
|
|
width = (int) (max_w - min_w) + 1;
|
|
|
|
height = (int) (max_h - min_h) + 1;
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
2014-06-24 00:59:04 +02:00
|
|
|
|
2014-06-19 00:05:49 +02:00
|
|
|
|
2014-06-28 18:23:43 +02:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Math approximation
|
|
|
|
//
|
|
|
|
|
|
|
|
void round_if_very_small(double& d)
|
|
|
|
{
|
|
|
|
if (abs(d) < 1.0e-10)
|
|
|
|
d = 0.0;
|
2014-07-02 21:54:52 +02:00
|
|
|
|
|
|
|
if (abs(d - 1) < 1.0e-10)
|
|
|
|
d = 1.0;
|
2014-06-28 18:23:43 +02:00
|
|
|
}
|
|
|
|
|
2014-07-03 23:48:11 +02:00
|
|
|
inline
|
|
|
|
bool fequal(float a, float b, float sigma)
|
|
|
|
{
|
|
|
|
return abs(a - b) < sigma;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-28 18:23:43 +02:00
|
|
|
|
2014-06-24 00:59:04 +02:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Image rotation
|
|
|
|
//
|
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
DPoint get_mapped_point(Image const& src, Point const& p, double const rotation)
|
2014-06-26 19:18:32 +02:00
|
|
|
{
|
|
|
|
DPoint const d = convert_grid_coord(src, p);
|
|
|
|
double p_angle = 0;
|
|
|
|
double dist = 0;
|
|
|
|
convert_abs_to_polar_coord(d, p_angle, dist);
|
|
|
|
return convert_polar_to_grid_coord(p_angle + rotation, dist);
|
|
|
|
}
|
|
|
|
|
2014-06-29 17:17:19 +02:00
|
|
|
inline
|
2014-07-07 23:19:57 +02:00
|
|
|
void rotate_pixel(Image const& src,
|
|
|
|
Point const& src_rotated_point,
|
|
|
|
unsigned int const src_limit,
|
|
|
|
uint8_t* rotate_buffer, unsigned int rot_index)
|
2014-06-28 13:52:24 +02:00
|
|
|
{
|
2014-07-07 23:19:57 +02:00
|
|
|
unsigned int const quantize = 8;
|
2014-06-29 17:17:19 +02:00
|
|
|
|
2014-07-07 23:19:57 +02:00
|
|
|
int const src_x = src_rotated_point.x >> 3;
|
|
|
|
int const src_y = src_rotated_point.y >> 3;
|
|
|
|
|
|
|
|
unsigned int src_index = (src_y * src.width + src_x) * 3;
|
2014-06-28 13:52:24 +02:00
|
|
|
|
2014-06-28 18:23:43 +02:00
|
|
|
// Bilinear interpolation
|
2014-06-29 17:17:19 +02:00
|
|
|
unsigned int src_index_1 = src_index;
|
2014-06-28 18:35:48 +02:00
|
|
|
unsigned int src_index_2 = src_index_1 + 3;
|
|
|
|
unsigned int src_index_3 = src_index_1 + 3 * src.width;
|
|
|
|
unsigned int src_index_4 = src_index_3 + 3;
|
|
|
|
|
2014-07-07 23:19:57 +02:00
|
|
|
// Out-of-bounds check
|
2014-06-29 17:17:19 +02:00
|
|
|
if (src_index_4 >= src_limit)
|
2014-06-28 18:23:43 +02:00
|
|
|
return;
|
|
|
|
|
2014-07-07 23:19:57 +02:00
|
|
|
unsigned int x_delta = src_rotated_point.x & 0x07;;
|
|
|
|
unsigned int y_delta = src_rotated_point.y & 0x07;
|
|
|
|
unsigned int const inv_x = quantize - x_delta;
|
|
|
|
unsigned int const inv_y = quantize - y_delta;
|
2014-07-06 23:49:46 +02:00
|
|
|
|
|
|
|
// No SIMD
|
2014-07-07 23:19:57 +02:00
|
|
|
rotate_buffer[rot_index] = ((src.buffer[src_index_1] * inv_x + src.buffer[src_index_2] * x_delta) * inv_y
|
|
|
|
+ (src.buffer[src_index_3] * inv_x + src.buffer[src_index_4] * x_delta) * y_delta) >> 6;
|
|
|
|
rotate_buffer[rot_index + 1] = ((src.buffer[src_index_1 + 1] * inv_x + src.buffer[src_index_2 + 1] * x_delta) * inv_y
|
|
|
|
+ (src.buffer[src_index_3 + 1] * inv_x + src.buffer[src_index_4 + 1] * x_delta) * y_delta) >> 6;
|
|
|
|
rotate_buffer[rot_index + 2] = ((src.buffer[src_index_1 + 2] * inv_x + src.buffer[src_index_2 + 2] * x_delta) * inv_y
|
|
|
|
+ (src.buffer[src_index_3 + 2] * inv_x + src.buffer[src_index_4 + 2] * x_delta) * y_delta) >> 6;
|
2014-06-28 13:52:24 +02:00
|
|
|
}
|
|
|
|
|
2014-07-03 23:51:41 +02:00
|
|
|
Image* rotate(Image const& src, double angle)
|
2014-06-24 00:59:04 +02:00
|
|
|
{
|
|
|
|
double const rotation = (angle / 180.0f) * M_PI;
|
|
|
|
unsigned int w = 0;
|
|
|
|
unsigned int h = 0;
|
|
|
|
compute_output_size(src, rotation, w, h);
|
2014-07-03 23:51:41 +02:00
|
|
|
Image* rotated = new Image(w, h);
|
2014-06-24 00:59:04 +02:00
|
|
|
|
2014-06-26 19:18:32 +02:00
|
|
|
// corner points in rotated image
|
2014-06-28 18:23:43 +02:00
|
|
|
// TODO: add one ligne for smooth border
|
|
|
|
DPoint const tl_grid = get_mapped_point(src, Point(0, 0), rotation);
|
2014-07-03 23:51:41 +02:00
|
|
|
Point const tl = convert_img_coord(*rotated, tl_grid);
|
2014-06-28 18:23:43 +02:00
|
|
|
DPoint const tr_grid = get_mapped_point(src, Point(src.width - 1, 0), rotation);
|
2014-07-03 23:51:41 +02:00
|
|
|
Point const tr = convert_img_coord(*rotated, tr_grid);
|
2014-06-28 18:23:43 +02:00
|
|
|
DPoint const bl_grid = get_mapped_point(src, Point(0, src.height - 1), rotation);
|
2014-07-03 23:51:41 +02:00
|
|
|
Point const bl = convert_img_coord(*rotated, bl_grid);
|
2014-06-26 19:18:32 +02:00
|
|
|
|
|
|
|
// corner points in source image
|
2014-07-03 23:51:41 +02:00
|
|
|
DPoint src_tl = get_mapped_point(*rotated, tl, -rotation);
|
2014-06-26 19:18:32 +02:00
|
|
|
src_tl = convert_img_coord_precision(src, src_tl);
|
|
|
|
|
2014-07-03 23:51:41 +02:00
|
|
|
DPoint const src_origin = get_mapped_point(*rotated, Point(0, 0), -rotation);
|
|
|
|
DPoint src_delta_x = get_mapped_point(*rotated, Point(1, 0), -rotation);
|
|
|
|
DPoint src_delta_y = get_mapped_point(*rotated, Point(0, 1), -rotation);
|
2014-06-28 18:23:43 +02:00
|
|
|
|
|
|
|
src_delta_x.x = src_delta_x.x - src_origin.x;
|
|
|
|
src_delta_x.y = src_delta_x.y - src_origin.y;
|
|
|
|
round_if_very_small(src_delta_x.x);
|
|
|
|
round_if_very_small(src_delta_x.y);
|
|
|
|
src_delta_y.x = src_delta_y.x - src_origin.x;
|
|
|
|
src_delta_y.y = src_delta_y.y - src_origin.y;
|
|
|
|
round_if_very_small(src_delta_y.x);
|
|
|
|
round_if_very_small(src_delta_y.y);
|
2014-06-26 19:18:32 +02:00
|
|
|
|
2014-06-28 18:23:43 +02:00
|
|
|
// // steps for first column in source image (y)
|
|
|
|
int origin_nb_steps = max(abs(bl.x - tl.x), abs(bl.y - tl.y));
|
|
|
|
// // steps for line in source image (x)
|
2014-06-26 19:18:32 +02:00
|
|
|
int line_nb_steps = max(abs(tr.x - tl.x), abs(tr.y - tl.y));
|
|
|
|
|
2014-06-28 18:23:43 +02:00
|
|
|
// steps for first column in rotated image (y)
|
2014-07-03 23:54:06 +02:00
|
|
|
DPoint const rotated_step((bl.x - tl.x) / (float) origin_nb_steps, (bl.y - tl.y) / (float) origin_nb_steps);
|
2014-06-26 19:18:32 +02:00
|
|
|
|
2014-06-28 18:23:43 +02:00
|
|
|
// steps for line in rotated image (x)
|
2014-07-03 23:54:06 +02:00
|
|
|
DPoint const bresenham((tr.x - tl.x) / (float) line_nb_steps, (tr.y - tl.y) / (float) line_nb_steps);
|
2014-06-26 19:18:32 +02:00
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
unsigned int const src_limit = src.width * src.height * 3;
|
|
|
|
|
2014-07-04 08:23:06 +02:00
|
|
|
DPoint const rot_origin_in_src_grid = get_mapped_point(*rotated, Point(0, 0), -rotation);
|
|
|
|
DPoint const rot_origin_in_src = convert_img_coord_precision(src, rot_origin_in_src_grid);
|
2014-06-28 18:23:43 +02:00
|
|
|
|
2014-07-06 23:49:46 +02:00
|
|
|
unsigned int const buffer_pixel_capacity = 128 / 3;
|
|
|
|
unsigned int const buffer_size = buffer_pixel_capacity * 3;
|
|
|
|
unsigned int buffer_index = 0;
|
2014-07-04 08:23:06 +02:00
|
|
|
uint8_t buffer[buffer_size];
|
2014-07-06 23:49:46 +02:00
|
|
|
memset(buffer, 0, buffer_size);
|
|
|
|
unsigned int buffer_offset = 0;
|
2014-06-28 18:23:43 +02:00
|
|
|
|
2014-07-07 23:19:57 +02:00
|
|
|
unsigned int const quantize = 8;
|
|
|
|
int const& src_qwidth = src.width * quantize;
|
|
|
|
int const& src_qheight = src.height * quantize;
|
|
|
|
|
2014-07-04 08:23:06 +02:00
|
|
|
for (unsigned int y = 0; y < rotated->height; ++y)
|
|
|
|
{
|
2014-07-07 23:19:57 +02:00
|
|
|
Point const src_rotated_point((rot_origin_in_src.x + y * src_delta_y.x) * quantize,
|
|
|
|
(rot_origin_in_src.y + y * src_delta_y.y) * quantize);
|
2014-06-28 18:23:43 +02:00
|
|
|
|
2014-07-04 08:23:06 +02:00
|
|
|
for (unsigned int x = 0; x < rotated->width; ++x)
|
|
|
|
{
|
2014-07-07 23:19:57 +02:00
|
|
|
Point const src_runner(src_rotated_point.x + x * src_delta_x.x * quantize,
|
|
|
|
src_rotated_point.y + x * src_delta_x.y * quantize);
|
|
|
|
|
|
|
|
if (src_runner.x >= 0 && src_runner.x < src_qwidth
|
|
|
|
&& src_runner.y >= 0 && src_runner.y < src_qheight)
|
2014-06-28 18:23:43 +02:00
|
|
|
{
|
2014-07-07 23:19:57 +02:00
|
|
|
rotate_pixel(src, src_runner,
|
|
|
|
src_limit,
|
|
|
|
buffer, buffer_index * 3);
|
2014-06-28 18:23:43 +02:00
|
|
|
}
|
2014-06-28 13:52:24 +02:00
|
|
|
|
2014-07-07 23:19:57 +02:00
|
|
|
// Flush buffer to dest
|
2014-07-06 23:49:46 +02:00
|
|
|
++buffer_index;
|
|
|
|
if (buffer_index == buffer_pixel_capacity)
|
|
|
|
{
|
|
|
|
memcpy(rotated->buffer + buffer_offset, buffer, buffer_size);
|
|
|
|
buffer_offset += buffer_size;
|
|
|
|
buffer_index = 0;
|
|
|
|
memset(buffer, 0, buffer_size);
|
|
|
|
}
|
2014-06-24 00:59:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rotated;
|
|
|
|
}
|
|
|
|
|
2014-07-02 21:54:52 +02:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Tile rotation
|
|
|
|
//
|
|
|
|
|
|
|
|
template<unsigned int W, unsigned int H>
|
2014-07-04 00:23:54 +02:00
|
|
|
void rotate_pixel(TiledImage<W, H> const& src,
|
2014-07-08 08:04:43 +02:00
|
|
|
Point const& src_rotated_point,
|
2014-07-09 07:50:09 +02:00
|
|
|
uint8_t* rot_tile)
|
2014-07-02 21:54:52 +02:00
|
|
|
{
|
2014-07-08 08:04:43 +02:00
|
|
|
unsigned int const quantize = 8;
|
2014-07-02 21:54:52 +02:00
|
|
|
|
2014-07-08 08:04:43 +02:00
|
|
|
int const src_x = src_rotated_point.x >> 3;
|
|
|
|
int const src_y = src_rotated_point.y >> 3;
|
2014-07-06 23:49:46 +02:00
|
|
|
|
2014-07-08 08:04:43 +02:00
|
|
|
uint8_t const* src_index_1 = src.access_pixel(src_x, src_y);
|
2014-07-06 23:49:46 +02:00
|
|
|
uint8_t const* src_index_2 = src.access_pixel(src_x + 1, src_y);
|
|
|
|
uint8_t const* src_index_3 = src.access_pixel(src_x, src_y + 1);
|
|
|
|
uint8_t const* src_index_4 = src.access_pixel(src_x + 1, src_y + 1);
|
2014-07-02 21:54:52 +02:00
|
|
|
|
|
|
|
// FIXME: deal with image border
|
2014-07-06 23:49:46 +02:00
|
|
|
if (!src_index_4)
|
2014-07-02 21:54:52 +02:00
|
|
|
return;
|
|
|
|
|
2014-07-08 08:04:43 +02:00
|
|
|
unsigned int x_delta = src_rotated_point.x & 0x07;;
|
|
|
|
unsigned int y_delta = src_rotated_point.y & 0x07;
|
|
|
|
unsigned int const inv_x = quantize - x_delta;
|
|
|
|
unsigned int const inv_y = quantize - y_delta;
|
|
|
|
|
2014-07-06 23:49:46 +02:00
|
|
|
// No SIMD
|
2014-07-09 07:50:09 +02:00
|
|
|
rot_tile[0] = ((src_index_1[0] * inv_x + src_index_2[0] * x_delta) * inv_y
|
|
|
|
+ (src_index_3[0] * inv_x + src_index_4[0] * x_delta) * y_delta) >> 6;
|
|
|
|
rot_tile[1] = ((src_index_1[1] * inv_x + src_index_2[1] * x_delta) * inv_y
|
|
|
|
+ (src_index_3[1] * inv_x + src_index_4[1] * x_delta) * y_delta) >> 6;
|
|
|
|
rot_tile[2] = ((src_index_1[2] * inv_x + src_index_2[2] * x_delta) * inv_y
|
|
|
|
+ (src_index_3[2] * inv_x + src_index_4[2] * x_delta) * y_delta) >> 6;
|
2014-07-02 21:54:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<unsigned int W, unsigned int H>
|
2014-07-03 23:51:41 +02:00
|
|
|
TiledImage<W, H>*
|
|
|
|
rotate(TiledImage<W, H> const& src, double angle)
|
2014-07-02 21:54:52 +02:00
|
|
|
{
|
|
|
|
double const rotation = (angle / 180.0f) * M_PI;
|
|
|
|
unsigned int w = 0;
|
|
|
|
unsigned int h = 0;
|
|
|
|
compute_output_size(src, rotation, w, h);
|
2014-07-03 23:51:41 +02:00
|
|
|
auto rotated = new TiledImage<W, H>(w, h);
|
2014-07-02 21:54:52 +02:00
|
|
|
|
2014-07-03 23:51:41 +02:00
|
|
|
DPoint src_origin = get_mapped_point(*rotated, Point(0, 0), -rotation);
|
|
|
|
DPoint src_delta_x = get_mapped_point(*rotated, Point(1, 0), -rotation);
|
|
|
|
DPoint src_delta_y = get_mapped_point(*rotated, Point(0, 1), -rotation);
|
2014-07-02 21:54:52 +02:00
|
|
|
|
|
|
|
src_delta_x.x = src_delta_x.x - src_origin.x;
|
|
|
|
src_delta_x.y = src_delta_x.y - src_origin.y;
|
|
|
|
round_if_very_small(src_delta_x.x);
|
|
|
|
round_if_very_small(src_delta_x.y);
|
|
|
|
src_delta_y.x = src_delta_y.x - src_origin.x;
|
|
|
|
src_delta_y.y = src_delta_y.y - src_origin.y;
|
|
|
|
round_if_very_small(src_delta_y.x);
|
|
|
|
round_if_very_small(src_delta_y.y);
|
|
|
|
|
2014-07-03 23:51:41 +02:00
|
|
|
DPoint const rot_origin_in_src_grid = get_mapped_point(*rotated, Point(0, 0), -rotation);
|
2014-07-02 21:54:52 +02:00
|
|
|
DPoint const rot_origin_in_src = convert_img_coord_precision(src, rot_origin_in_src_grid);
|
|
|
|
|
2014-07-08 08:04:43 +02:00
|
|
|
unsigned int const quantize = 8;
|
|
|
|
int const& src_qwidth = src.width * quantize;
|
|
|
|
int const& src_qheight = src.height * quantize;
|
|
|
|
|
2014-07-03 23:51:41 +02:00
|
|
|
for (unsigned int y = 0; y < rotated->nb_row_tile; ++y)
|
2014-07-02 21:54:52 +02:00
|
|
|
{
|
2014-07-03 23:51:41 +02:00
|
|
|
for (unsigned int x = 0; x < rotated->nb_col_tile; ++x)
|
2014-07-02 21:54:52 +02:00
|
|
|
{
|
2014-07-03 23:51:41 +02:00
|
|
|
unsigned int const rot_tile_index = y * rotated->nb_col_tile + x;
|
2014-07-09 07:50:09 +02:00
|
|
|
uint8_t* runner = rotated->get_tile(rot_tile_index);
|
2014-07-02 21:54:52 +02:00
|
|
|
|
|
|
|
for (unsigned int j = 0; j < H; ++j)
|
|
|
|
{
|
|
|
|
int const y_index = y * H + j;
|
2014-07-02 22:38:57 +02:00
|
|
|
int x_index = x * W;
|
2014-07-08 08:04:43 +02:00
|
|
|
DPoint const src_rotated_point((rot_origin_in_src.x + x_index * src_delta_x.x + y_index * src_delta_y.x) * quantize,
|
|
|
|
(rot_origin_in_src.y + x_index * src_delta_x.y + y_index * src_delta_y.y) * quantize);
|
2014-07-02 21:54:52 +02:00
|
|
|
|
2014-07-04 00:34:06 +02:00
|
|
|
for (unsigned int i = 0; i < W; ++i)
|
2014-07-02 21:54:52 +02:00
|
|
|
{
|
2014-07-08 08:04:43 +02:00
|
|
|
Point const src_runner(src_rotated_point.x + i * src_delta_x.x * quantize,
|
|
|
|
src_rotated_point.y + i * src_delta_x.y * quantize);
|
|
|
|
|
|
|
|
if (src_runner.x >= 0 && src_runner.x < src_qwidth
|
|
|
|
&& src_runner.y >= 0 && src_runner.y < src_qheight)
|
2014-07-04 00:34:06 +02:00
|
|
|
{
|
2014-07-09 07:50:09 +02:00
|
|
|
rotate_pixel(src, src_runner, runner);
|
2014-07-04 00:34:06 +02:00
|
|
|
}
|
2014-07-02 21:54:52 +02:00
|
|
|
|
2014-07-09 07:50:09 +02:00
|
|
|
runner += 3;
|
2014-07-02 21:54:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rotated;
|
|
|
|
}
|
|
|
|
|
2014-06-24 00:59:04 +02:00
|
|
|
|
|
|
|
|
2014-06-19 00:05:49 +02:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Check
|
|
|
|
//
|
|
|
|
|
2014-06-22 15:50:42 +02:00
|
|
|
bool check_points()
|
|
|
|
{
|
|
|
|
Image five(5, 5);
|
|
|
|
Point origin(0, 0);
|
|
|
|
DPoint d1 = convert_grid_coord(five, origin);
|
|
|
|
assert(d1.x == -2);
|
|
|
|
assert(d1.y == -2);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
bool check_trigo()
|
|
|
|
{
|
|
|
|
Image square(500, 500);
|
|
|
|
double const ratio = compute_ratio(square);
|
2014-06-24 19:14:59 +02:00
|
|
|
double const sigma = 1.0e-2;
|
|
|
|
if (!fequal(ratio, 1 / 707.106, sigma))
|
|
|
|
{
|
|
|
|
cerr << __LINE__ << " | Invalid ratio: " << ratio << " != " << 1 / 707.106 << endl;
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
// Check that the origin of a square image is at sqrt(2) / 2
|
|
|
|
double const angle = convert_radian(square, Point(0, 0), ratio);
|
|
|
|
|
2014-06-22 15:50:42 +02:00
|
|
|
if (!fequal(angle, 3 * M_PI / 4, sigma))
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-24 19:14:59 +02:00
|
|
|
cerr << __LINE__ << " | Invalid angle value: " << angle << " != " << 3 * M_PI / 4 << endl;
|
2014-06-18 08:47:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that we can reverse the origin point.
|
2014-06-22 15:50:42 +02:00
|
|
|
DPoint const abs_reverse_point = convert_abs_coord(angle, ratio);
|
2014-06-28 13:52:24 +02:00
|
|
|
Point const reverse_point = convert_img_coord(square, abs_reverse_point);
|
2014-06-24 19:14:59 +02:00
|
|
|
if (!fequal(0.0, reverse_point.x, sigma)
|
|
|
|
|| !fequal(0.0, reverse_point.y, sigma))
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-24 19:14:59 +02:00
|
|
|
cerr << __LINE__ << "Reverse origin fail" << endl;
|
|
|
|
cerr << " " << reverse_point << " != (0, 0)" << endl;
|
|
|
|
cerr << " abs point " << abs_reverse_point << endl;
|
2014-06-18 08:47:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that when rotating the origin by 45 degrees
|
|
|
|
double const rotation = M_PI / 4; // 45 degrees
|
|
|
|
unsigned int w = 0;
|
|
|
|
unsigned int h = 0;
|
|
|
|
compute_output_size(square, rotation, w, h);
|
|
|
|
|
2014-06-24 19:14:59 +02:00
|
|
|
if (!fequal(w, square.width * sqrt(2), sigma * square.width)
|
|
|
|
|| !fequal(h, square.height * sqrt(2), sigma * square.height))
|
2014-06-19 00:05:49 +02:00
|
|
|
{
|
2014-06-24 19:14:59 +02:00
|
|
|
cerr << "Invalid rotated image dimensions " << w << " x " << h << endl;
|
|
|
|
cerr << " expected " << (int) ceil(square.width * sqrt(2)) << " x " << (int) ceil(square.height * sqrt(2)) << endl;
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
|
2014-06-24 19:14:59 +02:00
|
|
|
Image rotated(w, h);
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-24 19:14:59 +02:00
|
|
|
DPoint const a_p45 = convert_abs_coord(angle + rotation, ratio);
|
2014-06-28 13:52:24 +02:00
|
|
|
Point const p45 = convert_img_coord(rotated, a_p45);
|
2014-06-24 19:14:59 +02:00
|
|
|
if (!fequal(0, p45.x, sigma))
|
|
|
|
{
|
|
|
|
cerr << __LINE__ << " > Rotation origin by 45 degrees:" << endl;
|
|
|
|
cerr << " invalid x value: " << p45.x << " != " << 0 << endl;
|
|
|
|
cerr << " absolute point: " << a_p45 << endl;
|
|
|
|
cerr << " relative point: " << p45 << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!fequal(p45.y, (h - 1) / 2.0f, sigma))
|
|
|
|
{
|
|
|
|
cerr << __LINE__ << " > Rotation origin by 45 degrees:" << endl;
|
|
|
|
cerr << "Invalid y value: " << p45.y << " != " << (h - 1) / 2.0f << endl;
|
|
|
|
cerr << " absolute point: " << a_p45 << endl;
|
|
|
|
cerr << " relative point: " << p45 << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Polar coordinates
|
|
|
|
{
|
|
|
|
DPoint const d(-42.5, 37.5);
|
|
|
|
double angle = 0;
|
|
|
|
double dist = 0;
|
|
|
|
convert_abs_to_polar_coord(d, angle, dist);
|
|
|
|
DPoint const reversed = convert_polar_to_grid_coord(angle, dist);
|
|
|
|
if (!fequal(d.x, reversed.x, sigma)
|
|
|
|
|| !fequal(d.y, reversed.y, sigma))
|
2014-06-19 00:05:49 +02:00
|
|
|
{
|
2014-06-24 19:14:59 +02:00
|
|
|
cerr << __LINE__ << " > Reverse polar coordinates:" << endl;
|
|
|
|
cerr << reversed << " != " << d << endl;
|
|
|
|
cerr << "polar (" << angle << ", " << dist << ")" << endl;
|
2014-06-19 00:05:49 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-18 08:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-26 23:45:02 +02:00
|
|
|
bool check_90(string const& path)
|
2014-06-26 21:28:34 +02:00
|
|
|
{
|
2014-06-26 23:45:02 +02:00
|
|
|
Image const src(path);
|
2014-07-03 23:51:41 +02:00
|
|
|
Image const* rotated = rotate(src, 90);
|
2014-06-26 21:28:34 +02:00
|
|
|
|
2014-07-03 23:51:41 +02:00
|
|
|
for (unsigned int y = 0; y < rotated->height; ++y)
|
2014-06-26 21:28:34 +02:00
|
|
|
{
|
2014-07-03 23:51:41 +02:00
|
|
|
for (unsigned int x = 0; x < rotated->width; ++x)
|
2014-06-26 21:28:34 +02:00
|
|
|
{
|
2014-07-03 23:51:41 +02:00
|
|
|
unsigned rot_index = (y * rotated->width + x) * 3;
|
2014-06-28 13:52:24 +02:00
|
|
|
unsigned src_index = (x * src.width + (src.width - 1 - y)) * 3;
|
2014-07-03 23:51:41 +02:00
|
|
|
if (memcmp(&rotated->buffer[rot_index], &src.buffer[src_index], 3 * sizeof (uint8_t)) != 0)
|
2014-06-28 13:52:24 +02:00
|
|
|
{
|
|
|
|
Point r(x, y);
|
|
|
|
Point s((src.width - 1 - y), x);
|
|
|
|
cerr << __LINE__ << " | R: " << r << " != S:" << s << endl;
|
2014-07-03 23:51:41 +02:00
|
|
|
cerr << "R dim: " << rotated->width << " x " << rotated->height << endl;
|
2014-06-28 13:52:24 +02:00
|
|
|
cerr << "S dim: " << src.width << " x " << src.height << endl;
|
2014-06-26 21:28:34 +02:00
|
|
|
return false;
|
2014-06-28 13:52:24 +02:00
|
|
|
}
|
2014-06-26 21:28:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 23:51:41 +02:00
|
|
|
delete rotated;
|
|
|
|
|
2014-06-26 21:28:34 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-22 15:50:42 +02:00
|
|
|
|
2014-06-18 08:47:10 +02:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Main
|
|
|
|
//
|
2014-07-03 23:49:10 +02:00
|
|
|
string get_save_path(string const& base, unsigned int i)
|
|
|
|
{
|
|
|
|
stringstream filename;
|
|
|
|
//filename << "/tmp/";
|
|
|
|
filename << base << "_";
|
|
|
|
|
|
|
|
if (i < 100)
|
|
|
|
filename << "0";
|
|
|
|
if (i < 10)
|
|
|
|
filename << "0";
|
|
|
|
filename << i << ".ppm";
|
|
|
|
|
|
|
|
return filename.str();
|
|
|
|
}
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-26 23:45:02 +02:00
|
|
|
int main(int argc, char* argv[])
|
2014-06-18 08:47:10 +02:00
|
|
|
{
|
2014-06-26 23:45:02 +02:00
|
|
|
if (argc < 2)
|
|
|
|
{
|
|
|
|
cout << "Usage: " << argv[0] << " image.ppm" << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-06 23:49:46 +02:00
|
|
|
bool perform_check = false;
|
2014-06-22 15:50:42 +02:00
|
|
|
|
2014-06-24 00:59:04 +02:00
|
|
|
if (perform_check)
|
|
|
|
{
|
|
|
|
if (!check_points())
|
|
|
|
return 1;
|
2014-06-18 08:47:10 +02:00
|
|
|
|
2014-06-24 00:59:04 +02:00
|
|
|
if (!check_trigo())
|
|
|
|
return 1;
|
2014-06-19 00:05:49 +02:00
|
|
|
|
2014-06-28 13:52:24 +02:00
|
|
|
if (!check_90(argv[1]))
|
2014-06-26 21:28:34 +02:00
|
|
|
{
|
2014-07-02 21:54:52 +02:00
|
|
|
cerr << __LINE__ << " | 90 degrees check failed" << endl << endl;
|
2014-06-28 18:23:43 +02:00
|
|
|
// return 1;
|
2014-06-26 21:28:34 +02:00
|
|
|
}
|
2014-06-24 00:59:04 +02:00
|
|
|
}
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
|
2014-07-07 23:31:59 +02:00
|
|
|
// No tile
|
2014-07-08 08:04:43 +02:00
|
|
|
Image img(argv[1]);
|
2014-07-07 23:31:59 +02:00
|
|
|
float average = 0.0;
|
|
|
|
int i = 0;
|
2014-07-02 22:38:57 +02:00
|
|
|
for (double rotation = 0; rotation < 360; rotation += 45)
|
2014-06-24 00:59:04 +02:00
|
|
|
{
|
|
|
|
auto const before = chrono::high_resolution_clock::now();
|
2014-07-03 23:51:41 +02:00
|
|
|
Image* const rotated = rotate(img, rotation);
|
2014-06-24 00:59:04 +02:00
|
|
|
auto const after = chrono::high_resolution_clock::now();
|
|
|
|
auto const duration_ms = std::chrono::duration_cast<std::chrono::milliseconds>(after - before);
|
2014-07-07 23:31:59 +02:00
|
|
|
average += duration_ms.count();
|
2014-07-02 21:54:52 +02:00
|
|
|
|
2014-06-24 19:14:59 +02:00
|
|
|
cout << "rotate(" << rotation << "): " << duration_ms.count() << " ms" << endl;
|
2014-07-02 21:54:52 +02:00
|
|
|
|
2014-07-03 23:49:10 +02:00
|
|
|
rotated->save(get_save_path("rotated", rotation));
|
2014-07-07 23:31:59 +02:00
|
|
|
delete rotated;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
cout << "---------" << endl;
|
|
|
|
cout << " average: " << average / i << "ms" << endl << endl;
|
|
|
|
|
|
|
|
// Tile
|
2014-07-08 08:04:43 +02:00
|
|
|
TiledImage<8, 8> tiled_img(argv[1]);
|
2014-07-07 23:31:59 +02:00
|
|
|
average = 0.0;
|
|
|
|
i = 0;
|
|
|
|
for (double rotation = 0; rotation < 360; rotation += 45)
|
|
|
|
{
|
|
|
|
auto const before = chrono::high_resolution_clock::now();
|
|
|
|
auto const rotated = rotate(tiled_img, rotation);
|
|
|
|
auto const after = chrono::high_resolution_clock::now();
|
|
|
|
auto const duration_ms = std::chrono::duration_cast<std::chrono::milliseconds>(after - before);
|
|
|
|
average += duration_ms.count();
|
|
|
|
|
|
|
|
cout << "rotate tiled(" << rotation << "): " << duration_ms.count() << " ms" << endl;
|
2014-07-02 21:54:52 +02:00
|
|
|
|
2014-07-07 23:31:59 +02:00
|
|
|
rotated->save(get_save_path("rotated_tiled", rotation));
|
2014-07-03 23:51:41 +02:00
|
|
|
delete rotated;
|
2014-07-07 23:31:59 +02:00
|
|
|
++i;
|
2014-06-24 00:59:04 +02:00
|
|
|
}
|
2014-07-07 23:31:59 +02:00
|
|
|
cout << "---------" << endl;
|
|
|
|
cout << " average: " << average / i << "ms" << endl;
|
2014-06-18 08:47:10 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|