I'm trying to convert some matlab code to python and the im2double function is giving me trouble. It takes an image and returns a matrix with the pixels using doubles instead of ints.
Currently I'm manipulating my images with PIL. It has a convert method that can take 'F' as parameter, but all it does is convert the integer value 255 to 255.0. Useless as far as I can tell.
The problem I have is that I'm doing some image manipulation and then have to save them. I can normalize my values so that they fall into the 0-255 range, but I lose some precision. It's small enough that it shouldn't normally matter, but here, it does.
I've tried using the 'tiff' file format and that didn't work out well. Though I can write/read to it, the results I get are not the right ones, which I can only get at the moment converting the pixels to 255 which results in a loss of precision, as I said previously. I also tried this 'SPIDER' file format thing I found on google previously that PIL supports though I couldn't open the image on an editor to check how it was doing.
im.show(floating_point_image)on matlab without having to convert it. – idontlikeyoumatlab Mar 20 '11 at 0:28