Metadata-Version: 2.1
Name: simple-image-viewer
Version: 0.0.2
Summary: A simple image viewer for computer vision purposes.
Home-page: https://github.com/saeid-h/Simple-Image-Viewer
Author: Saeid Hosseinipoor
Author-email: shossei1@stevens.edu
License: UNKNOWN
Description: 
        # Simple Image Viewer
        This python code provides a simple image viewer for the rgular image formats. This image viewer also supports non-standard floating point images which are widely used in computer vision including optical flow, disparity, and depth formats. 
        
        # File Format Support
        * png, jpg, ...:  &nbsp;&nbsp;   All regular images.
        * flo: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Middleburry optical flow.
        * dpt: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Middleburry depth.
        * pfm: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Freiburg floating point disparity.
        
        # Python Package
        
        You can also download and install the **Simple Image Viewer** as a python package by:
        `
        python -m pip install --index-url https://test.pypi.org/simple/ --no-deps simple-image-viewer
        `
        Then you can simply import it in a python code and use it as follows:
        `
        from simple_image_viewer import *
        `
        `
        SimpleImageViewer().mainloop()
        `
        
        Copyright (c) 2020 Saeid Hosseinipoor [Github](https://github.com/saeid-h) / [Web Page](https://saeid-h.github.io/) 
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown
