Metadata-Version: 2.1
Name: pypfm
Version: 1.4.4
Summary: Python pfm files reader
Home-page: https://github.com/Wats0ns/pypfm
Author: Wats0ns
Author-email: Wats0ns@github.com
License: MIT
Platform: UNKNOWN
Requires-Dist: pyzfp
Requires-Dist: numpy

Pypfm
=====

Python pfm files reader. Fast and python3 compatible, with compression
included

Install

::

    pip install pypfm

If you know the size upfront, specify it:

.. code:: python

    from pypfm import PFMLoader
    loader = PFMLoader((width, height), color=False, compress=False)

Otherwise it will find it by itself (slower):

.. code:: python

    from pypfm import PFMLoader
    loader = PFMLoader(color=False, compress=False)

Read a pfm file

.. code:: python

    pfm = loader.load_pfm('test.pfm')

Save a pfm file:

.. code:: python

    loader.save_pfm('test.pfm', pfm)

Using zfp compression:

.. code:: python

    from pypfm import PFMLoader
    loader = PFMLoader(color=False, compress=True)
    pfm = loader.load_pfm('test.pfm')
    loader.save_pfm('test.pfm', pfm)


