Skip to main content

Python pfm files reader

Project description

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

Install

pip install pypfm

If you know the size upfront, specify it:

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

Otherwise it will find it by itself (slower):

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

Read a pfm file

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

Save a pfm file:

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

Using zfp compression:

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypfm-1.4.3.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

pypfm-1.4.3-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page