Metadata-Version: 2.1
Name: simple-image-viewer
Version: 0.1.0
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
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


# 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 simple-image-viewer
```
Then you can simply import it in a python code and use it as follows:
```python
from simple_image_viewer import *
SimpleImageViewer().mainloop()
```

***
## Donation
If this project helps you to get your job done, you can give me a cup of coffee :) 

[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=VVZ72HZMRRM24&currency_code=USD&source=url)


***
_Copyright &copy; 2020 [Saeid Hosseinipoor](https://saeid-h.github.io/). Released under the [MIT License](LICENSE)._


