I want to mirror it and have it appear like this,
I want to mirror my image so that the original and the mirrored image appear side by side. The only thing is that I don't know how to extend the range of my original image in order to add its mirrored image right beside it.
Using my code (below) I have managed to do create the mirrored image, only I can't make both the original and the mirrored appear side by side.
My code,
int Height = TransformedPic.GetLength(0);
int Width = TransformedPic.GetLength(1);
for (int i = 0; i < Height / 2; i++)
{
for (int j = 0; j < Width; j++)
{
var Temporary = TransformedPic[i, j];
TransformedPic[i, j] = TransformedPic[Height - 1 - i, j];
TransformedPic[Height - 1 - i, j] = Temporary;
}
}
TransformedPic
is the variable in which the original image is saved under