PixeLINK Data Steam (PDS) Files in Python.
Project description
PixeLINKds: PixeLINK Data Steam Files in Python
PixeLINK Data Steam (PDS) is a file format used by PixeLINK software.
It is extremely easy to use
>>> import pixelinkds as pds
>>> timestamps, stack = pds.read('myfile.pds')
You can also iterate over each frame:
>>> with pds.Reader('myfile.pds') as reader:
... for timestamp, img in reader:
... print(timestamp)
... # do something with your image
Or you can convert into another format:
>>> pds.convert('myfile.pds', 'myfile.tif')
Current supported formats are tif (Multipage tif), npz (Numpy), mat (Matlab), avi (PIM1 encoded) For tif an avi files you will get an extra file with .txt appended to the name with the timestamps.
You can also convert or get info form the command line:
$ python -m pixelinkds convert myfile.pds myfile.tif
$ python -m pixelinkds info myfile.pds
Quick Installation
To install PixeLINKds, simply:
$ pip install pixelinkds
Dependencies
Numpy
SciPy (optional, to export mat files)
tifffile (optional, to export tif files)
OpenCV2 (optional, to export avi files)
PixeLINKds is written and maintained by Hernan E. Grecco <hernan.grecco@gmail.com>.
Other contributors, listed alphabetically, are:
No one yet.
(If you think that your name belongs here, please let the maintainer know)
PixeLINKds Changelog
0.1 (2016-08-25)
First public release.
Implemented a Reader for homogeneous Pixelink Data Stream file.
Implemented Frame Descriptor based on ctypes structure.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pixelinkds-0.1.tar.gz
.
File metadata
- Download URL: pixelinkds-0.1.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0f54e17122ee61aa610450daaafff3516a0edab9b8d88ec67e444d5aac6a760 |
|
MD5 | 9da6a31ef927959712a9dd753323530c |
|
BLAKE2b-256 | 2df3d1c9f1d0e08f9319d444cec5a7d565bd25461302ec6c56e633239660deef |