Metadata-Version: 2.1
Name: cropimage
Version: 0.0.2
Summary: A simple toolkit for detecting and cropping main body from pictures.
Home-page: https://github.com/haofanwang/cropimage
Author: Haofan Wang
Author-email: haofanwang.ai@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# cropimage
This is a simple toolkit for cropping main body from pictures.

<p align="center"><img title="crop_example" src="./assets/example.png"></p>

# Installation
~~~sh
pip install cropimage
~~~

## Get Started
~~~python
from cropimage import Cropper

cropper = Cropper()

# Get a Numpy array of the cropped image
cropped_array = cropper.crop('./images/input.jpg', completeness=True, target_size=(500,500))

# Save the cropped image
cv2.imwrite('cropped.jpg', result)
~~~


## Contributing
If you find any issue of this project, feel free to open an issue or contribute!


