Metadata-Version: 2.1
Name: PyDirtyLineDetection
Version: 1.1
Summary: A toolset that is designed to be used to detect dirty borders in videos/images
Home-page: https://github.com/jlw4049/DirtyLineDetection
Author: Jessie Wilson
Author-email: jessielw4049@gmail.com
License: MIT
Keywords: PyDirtyLineDetection
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# Dirty Line Detection

A toolset that is designed to be used to detect dirty borders in videos/images 

This is early development, currently it's only function is to find the edges of an image, and save the converted image.

Developed by Jessie Wilson (2022)

## Install

`pip install PyDirtyLineDetection`

## Uninstall

`pip uninstall PyDirtyLineDetection`

## Examples of How To Use

```python
from dirty_line_detection import EdgeFinder

convert_image = EdgeFinder()
convert_image.find_edges(file_input="example.png")

# File output is optional
# e.g. convert_image.save_image()
convert_image.save_image(file_output="example(1).png")


```

