旋转图像PPM

时间:2014-03-16 07:58:38

标签: c++ rotation ppm

我试图向左/向右旋转图像ppm。我成功旋转180度,但90似乎不起作用..

这是我的代码

// working 1-D array of pixels pixel
*n_array = new Image(width, height);
// set up the new array dimensions based on ROTATION type
switch (the rotation)
{
    case ROTCW:
    case ROTCCW:
   ...
    break;

    case ROT180:
    default: .. break;
}

for (unsigned int idx = 0; idx < (o_width * o_height); idx++)
{
    old_y = idx / o_width;
    switch (rotation)
    {
        case ROTCCW: ... 
        default: cout << "Oups" << std::endl; break;
    }
    // put pixel into n_array
}

所以这是我的结果..

http://i.stack.imgur.com/Cj6AM.png

http://i.stack.imgur.com/yTnbS.png

有人有解决方案吗?

1 个答案:

答案 0 :(得分:1)

在创建新图像后翻转图像尺寸。 尝试在GaryImage *n_array = new GrayImage(o_width, o_height);之后移动switch (rotation) {...}以使用正确的高度和宽度。

编辑:无论如何应该是GrayImage *n_array = new GrayImage(n_width, n_height);