Created
December 26, 2018 23:21
-
-
Save SubhiH/a9ac5a6dbb33e41c394d94d66593c3d1 to your computer and use it in GitHub Desktop.
Rotate an image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void ImageOperator::rotate(const unsigned char* input, | |
const int width, | |
const int height, | |
const int channel, | |
unsigned char*& output){ | |
unsigned char* tmp = new unsigned char[width*height*channel]; | |
int step = channel*width; | |
for (int row = 0; row < height; ++row) { | |
for (int col = 0; col < width*channel; col+=channel) { | |
for (int chan = 0; chan < channel; ++chan) { | |
tmp[(col/channel)*step+(step-row*channel-1)+chan-(channel-1)] = input[row*step+col+chan]; | |
} | |
} | |
} | |
output = tmp; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment