Created
December 26, 2018 22:51
-
-
Save SubhiH/9b70701dd741cf9a7367d1df6ebc05c0 to your computer and use it in GitHub Desktop.
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){ | |
for (int row = 0; row < height; ++row) { | |
for (int col = 0; col < width; col+=1) { | |
output[col*width+width-1-row] = input[row*width+col]; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment