what can i do with a matrix image?
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img=mpimg.imread('image.png')
imgplot = plt.imshow(img)
i've already thought: -difference between same image to notice some movement -Transpose matrix to rotate the image are there other operation that i can do, closer numerical analysis ?