I want to read pfm format images in python. I tried with imageio.read but it is throwing an error. Can I have any suggestion, please?
img = imageio.imread(\'im
img = imageio.imread('image.pfm')
will just do it. For easy use it can be converted to numpy array.
img = numpy.asarray(img)