Metadata-Version: 2.1
Name: himage
Version: 0.1.1
Summary: A small library, of high level image processing tools
Home-page: https://github.com/mySpecialUsername/highImage/
Author: Gor G.
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: opencv-python
Requires-Dist: matplotlib
Requires-Dist: PyQt6

A set of various convenient functions useful in image processing, written in python.

## Example of usage

```py
from himage import imshow, multimshow, imread

im = imread("image.png")

imshow(im)
multimshow([im, im, im], titles = ['title 1', 'title 2', 'title 3'], n_cols=3)
```
