i have just done some image processing using the python image library (PIL) using a post i found earlier to perform fourier transforms of images and i cant get the save function to work. the whole code works fine but it just wont save the resulting image. the code is below
from PIL import Image
import numpy as np
i = Image.open("C:/Users/User/Desktop/mesh.bmp")
i = i.convert("L")
a = np.asarray(i)
b = np.abs(np.fft.rfft2(a))
j = Image.fromarray(b)
j.save("C:/Users/User/Desktop/mesh_trans",".bmp")
the error i get is the following:
save_handler = SAVE[string.upper(format)] # unknown format
KeyError: '.BMP'
this seems like such a simple thing to do and i cant get it to work at all. am i missing something incredibly obvious? Thanks for any help