Metadata-Version: 2.1
Name: pyinvert
Version: 0.0.1
Summary: A simple invert function implementation using python and cv2
Project-URL: Homepage, https://github.com/garbage1010/invert
Project-URL: Bug Tracker, https://github.com/garbage1010/invert/issues
Author-email: Rory Meeduri <rory5827@outlook.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# invert
Image inversion in python (OpenCV & numpy)

## Usage
### example
```
import cv2
from pyinvert import invert

image = cv2.imread('house.tiff')

new = invert(image)
cv2.imwrite('invertedhouse.tiff', new)
```
**Original Image**
![A Blue car in front of a house](https://github.com/garbage1010/invert/blob/main/tests/house.tiff)

**Inverted**
![Inversion of the previous image](https://github.com/garbage1010/invert/blob/main/tests/invertedhouse.tiff)
