def mirror(np_img): image = Image.fromarray(np_img) image = ImageOps.mirror(image) data = np.asarray(image) return data