CropImage is a simple toolkit for image cropping. Different from other projects that mainly tackle face region, we extend to all kinds of images such as landscape. We support horizontal and portrait size and generate a square output.
pip install cropimage
from cropimage import Cropper
cropper = Cropper()
# Get a Numpy array of the cropped image
# Set completeness to be True if you expect the 'face' to be focused rather than 'person'
# Set target_size to be a tuple (size, size), only square output is supported now
result = cropper.crop('./images/input.jpg')
# Save the cropped image
cv2.imwrite('cropped.jpg', result)
If you find any issue of this project, feel free to open an issue or contribute!