1

openFrameworks を使用して画像を回転させようとしていますが、問題があります。回転した画像は元の色ではなく赤です。

void testApp::setup(){
image.loadImage("abe2.jpg");
rotatedImage.allocate(image.width, image.height, OF_IMAGE_COLOR);

imageCenterX = image.getWidth() / 2;
imageCenterY = image.getHeight() / 2;
w = image.getWidth();
h = image.getHeight();
int degrees = 180;
float radians = (degrees*(PI / 180));

for (int y = 0; y < h; y++) {
    for (int x = 0; x < w; x++) {
        int index = image.getPixelsRef().getPixelIndex(x, y);

        int newX = (cos(radians) * (x - imageCenterX) - sin(radians) * (y - imageCenterY) + imageCenterX);
        int newY = (sin(radians) * (x - imageCenterX) + cos(radians) * (y - imageCenterY) + imageCenterY);

        int newIndex = rotatedImage.getPixelsRef().getPixelIndex(newX, newY);

        rotatedImage.getPixelsRef()[newIndex] = image.getPixelsRef()[index];
    }
}
rotatedImage.update();
}

 void testApp::update(){
 }

void testApp::draw(){
image.draw(0,0);
rotatedImage.draw(0,400);
}

誰かが私が間違っていることを教えてもらえますか?

4

1 に答える 1

2

画像に 3 つの色成分 (赤、緑、青) がある場合、それらの 3 つすべてを変換する必要があります。次のようにしてください。

rotatedImage.getPixelsRef()[newIndex] = image.getPixelsRef()[index];
rotatedImage.getPixelsRef()[newIndex+1] = image.getPixelsRef()[index+1];
rotatedImage.getPixelsRef()[newIndex+2] = image.getPixelsRef()[index+2];
于 2012-10-08T19:15:32.460 に答える