Metadata-Version: 2.1
Name: rawls
Version: 0.1.5
Summary: RAW Light Simulation file reader/converter package
Home-page: https://github.com/prise-3d/rawls
Author: Jérôme BUISINE
Author-email: jerome.buisine@univ-littoral.fr
License: MIT
Description: RAW Light Simulation reader/converter package
        =============================================
        
        ![](https://github.com/prise-3d/rawls/workflows/build/badge.svg) ![](https://github.com/prise-3d/rawls/workflows/pypi/badge.svg)
        
        <p align="center">
            <img src="https://github.com/prise-3d/rawls/blob/master/rawls_logo.png" width="50%">
        </p>
        
        Description
        -----------
        
        `rawls` is a python package developed during a thesis project. It enables to manage `.rawls` image file extension. The image extension `.rawls` is used to store all samples values of images obtained during rendering of synthesis images. This output extension is available in a custom version of [pbrt-v3](https://github.com/prise-3d/pbrt-v3) details.
        
        Installation
        ------------
        
        ```bash
        pip install rawls
        ```
        
        How to use ?
        ------------
        
        To use, simply do:
        ```python
        from rawls.rawls import Rawls
        path = 'images/example_1.rawls'
        rawls_img = Rawls.load(path)
        rawls_img.save('output.png')
        ```
        
        Classes
        -------
        
        This project contains usefull classes.
        
        - **Rawls** : *Manage `.rawls` file date*
        - **RawlsStats** : *Enables to merge `.rawls` image files and extract statistics*
        
        All these classes will be enhanced during development of the package. Documentation is available [here](https://prise-3d.github.io/rawls/).
        
        How to contribute
        -----------------
        
        Please refer to the [guidelines](CONTRIBUTING.md) file if you want to contribute!
        
        ## Contributors
        
        * [jbuisine](https://github.com/jbuisine)
        
        ## License
        
        [MIT](LICENSE)
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
