Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit 0dba5b9

Browse files
committed
Update packing and docs
1 parent 16af536 commit 0dba5b9

3 files changed

Lines changed: 24 additions & 9 deletions

File tree

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ Install in Ubuntu
4242
Run following commands in a terminal::
4343

4444
sudo apt-get install python-imaging python-imaging-tk python-gst0.10 gstreamer0.10-plugins-ugly python-pip
45-
sudo pip install https://github.com/behnam/python-lfp-reader/archive/python-lfp-reader-2.0.0.tar.gz
45+
46+
sudo pip install https://github.com/behnam/python-lfp-reader/tarball/master
4647

4748

4849
LFP File Format
@@ -168,6 +169,7 @@ The main classes in the ``lfp_reader`` package are:
168169
- ``LfpGenericFile``
169170
- ``LfpPictureFile``
170171
- ``LfpStorageFile``
172+
- ``LfpTkViewer``
171173

172174

173175
Code License
@@ -193,6 +195,9 @@ Legal Notice
193195
This project is NOT affiliated with LYTRO, INC. Lytro (R) is a trademark of
194196
LYTRO, INC. <http://www.lytro.com/>
195197

198+
This project uses GStreamer plugins for H.264 decoding, thus includes no
199+
implementation of H.264 algorithms.
200+
196201
Some of this work is based on Nirav Patel's ``lfptools`` project and his
197202
analysis on LFP file format. <https://github.com/nrpatel/lfptools>
198203

lfp_reader/__init__.py

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,25 @@
2626
LFP (Light Field Photography) File Reader
2727
=========================================
2828
29-
Provides a Python library and command-line scripts to read Lytro LFP files, and
30-
a simple viewer for Lytro LFP Picture files.
29+
<http://code.behnam.es/python-lfp-reader>
30+
31+
*Version 2.0*
32+
33+
Provides a Python library and command-line scripts to read Lytro LFP files.
34+
This version supports viewing/exporting from picture files generated by
35+
*Lytro Desktop application version 2.0*.
36+
37+
There is also an enhanced viewer for Lytro LFP Picture files which supports
38+
light-field picture refocusing and enhanced-depth-of-field/parallax view.
3139
3240
Technically, there are two types of LFP files: Picture and Storage. LFP
3341
Storage files are used to store the data and configurations for Lytro cameras,
3442
and LFP Picture (.lfp) files are used to store RAW and/or processed data for
3543
Lytro light-field pictures.
3644
37-
This is a pure-Python package and should work on any platform. Please report
38-
any problems at <https://github.com/behnam/python-lfp-reader/issues>.
39-
4045
4146
LFP Reader Library
42-
=======================
47+
==================
4348
4449
**LFP Reader library (``lfp_reader``)** provides direct reading access to all
4550
data and metadata in any LFP files. For the processed LFP Picture files, you
@@ -60,11 +65,15 @@
6065
This project is NOT affiliated with LYTRO, INC. Lytro (R) is a trademark of
6166
LYTRO, INC. <http://www.lytro.com/>
6267
68+
This project uses GStreamer plugins for H.264 decoding, thus includes no
69+
implementation of H.264 algorithms.
70+
6371
Some of this work is based on Nirav Patel's ``lfptools`` project and his
6472
analysis on LFP file format. <https://github.com/nrpatel/lfptools>
6573
66-
Copyright (C) 2012-2013 Behnam Esfahbod.
74+
Copyright (C) 2012-2013 Behnam Esfahbod. <http://behnam.es/>
6775
76+
Please report any problems at <https://github.com/behnam/python-lfp-reader/issues>.
6877
"""
6978

7079

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
long_description=open('README.rst').read(),
3030

3131
url='http://code.behnam.es/python-lfp-reader/',
32-
download_url='https://github.com/behnam/python-lfp-reader/',
32+
download_url='https://github.com/behnam/python-lfp-reader/tarball/master',
3333

3434
classifiers=[
3535
'Development Status :: 5 - Production/Stable',
@@ -61,6 +61,7 @@
6161
'lfp_picture_info.py',
6262
'lfp_picture_viewer.py',
6363
'lfp_storage_exporter.py',
64+
'lfp_storage_get_file.py',
6465
'lfp_storage_info.py',
6566
],
6667

0 commit comments

Comments
 (0)