Suppose we have 24 images per day, one per hour. And every image is 24×24 CSV file.
I do the following transformation for every day:
The first image is unchanged.
For the second image, move
column i to (i+2) mod 24.For the third image, move column i to (i+3) mod 24.
and so on.
My question is how to visualize the images in graphically from before and after the transformation in convenient way for every day?