Metadata-Version: 2.1
Name: instafilter
Version: 0.3.1
Summary: Images filters learned from Instagram. Implemented in pytorch.
Home-page: https://github.com/thoppe/instafilter
Author: Travis Hoppe
Author-email: travis.hoppe+{package_name}@gmail.com
License: CC-SA
Description: ![instafilter](development/header_image.jpg)
        
        [![PyVersion](https://img.shields.io/pypi/pyversions/instafilter.svg)](https://img.shields.io/pypi/pyversions/instafilter.svg)
        [![PyPI](https://img.shields.io/pypi/v/instafilter.svg)](https://pypi.python.org/pypi/instafilter)
        
        Modifiy images using Instagram-like filters in python. [Read how it works on Medium](https://medium.com/@travis.hoppe/instagram-filters-in-python-acc1ee7e67bc)!
        
            pip install instafilter
        
        Example:
        
        ``` python
        from instafilter import Instafilter
        
        model = Instafilter("Lo-fi")
        new_image = model("myimage.jpg")
        
        # To save the image, use cv2
        import cv2
        cv2.imwrite("modified_image.jpg", new_image)
        ```
        
        ## Sample images
        
        Browse samples for every filter in [`development/examples`](development/examples).
        
        **Ludwig**
        [![Example image: Ludwig](development/examples/Ludwig.jpg)](examples/Ludwig.jpg)
        
        **Stinson**
        [![Example image: Stinson](development/examples/Stinson.jpg)](examples/Stinson.jpg)
        
        **Moon**
        [![Example image: Moon](development/examples/Moon.jpg)](examples/Moon.jpg)
        
        ## Train
        
        See the code in [`development/train_new_model`](development/train_new_model) to train a new model.
        
        ## Roadmap
        
        + Medium post
        
        ## Credits
        
        + Made with ❤️ by [Travis Hoppe](https://twitter.com/metasemantic?lang=en).
        
        + Header image sourced from [Will Terra](https://unsplash.com/photos/qIY9mUKT540) and modified with instafilter.
Keywords: art
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: GPU
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Artistic Software
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
