Metadata-Version: 2.1
Name: dio_image_processing
Version: 0.0.1
Summary: Image processing package in Python using the Skimage package
Home-page: https://github.com/hadirga/dio-create-an-image-processing-package
Author: Hadir Garcia
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Creating an Image Processing Package

This repository was initially intended to solve the code challenge about creating a processing
image package with Python in development of the [DIO's](https://dio.me) bootcamp "Geração Tech
Unimed-BH - Ciência de Dados".

This repository contents a simple example about how to create a package using Python's Setuptools
package and publish it in the Pypi repository.

## Description

The package image_processing is used to:
    Processing:
        - Histogram matching
        - Structural Similarity
        - Resize image
    Utils:
        - Read image
        - Save image
        - Plot image
        - Plot result
        - Plot histogram

## Instalation

Use the package manager [pip](https://pip.pypa.io/en/stable) to install the image_processing
package.
```bash
pip install image_processing
```

## Usage

```python
from image_processing import processing, utils
```

## Author
[Hadir Garcia](https://github.com/hadirga)

## License
[MIT](https://choosealicense.com/licenses/mit/)
