imgprocalgs
imgprocalgs copied to clipboard
Image processing algorithms implementation in pure Python :wrench:
I decided to create this issue for people who want to implement some digital image processing algorithms from scratch and learn Python and Flask from each other.
# Information about the issue sharpen_area_size is optional and defaults to [0, 0] which will later on be used in: ``` def _make_blur(self, distance: int, sharp_area_size: int): """ :param distance:...
Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.3.0 to 10.0.1. Release notes Sourced from pillow's releases. 10.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/10.0.1.html Changes Updated libwebp to 1.3.2 #7395 [@radarhere] Updated zlib to 1.3 #7344 [@radarhere] 10.0.0 https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html Changes...
Fix for #11. To avoid the ZeroDivisionError the default sharpen minimum and maximum heights have been set to values of 1/3 and 2/3 of the page, respectively.
Resolves #15 by creating a code of conduct file. Changes to be made by project owner: * Please replace the sample email with the appropriate email for reporting violations. Please...
It would be great to add Code of Conduct to this repository
## Add Histogram Equalization Algorithm This PR introduces a new image processing algorithm: Histogram Equalization, which enhances image contrast by redistributing pixel intensity values. ### Key Changes: - Added `histogram_equalization.py`...
I have created a case insensitive check plus normalization