- Notifications
You must be signed in to change notification settings - Fork 46.7k
/
Copy pathchange_contrast.py
35 lines (26 loc) · 834 Bytes
/
change_contrast.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
Changing contrast with PIL
This algorithm is used in
https://noivce.pythonanywhere.com/ Python web app.
psf/black: True
ruff : True
"""
fromPILimportImage
defchange_contrast(img: Image, level: int) ->Image:
"""
Function to change contrast
"""
factor= (259* (level+255)) / (255* (259-level))
defcontrast(c: int) ->int:
"""
Fundamental Transformation/Operation that'll be performed on
every bit.
"""
returnint(128+factor* (c-128))
returnimg.point(contrast)
if__name__=="__main__":
# Load image
withImage.open("image_data/lena.jpg") asimg:
# Change contrast to 170
cont_img=change_contrast(img, 170)
cont_img.save("image_data/lena_high_contrast.png", format="png")