-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGammaCorrectionAlgo.py
29 lines (29 loc) · 1.18 KB
/
GammaCorrectionAlgo.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
#Authors SriVennelaVaishnapu
#Email [email protected]
#Gamma correction Algorithm
#gammaCorrection = 1 / gamma
#colour = GetPixelColour(x, y)
#newRed = 255 * (Red(colour) / 255) ^ gammaCorrection
#newGreen = 255 * (Green(colour) / 255) ^ gammaCorrection
#newBlue = 255 * (Blue(colour) / 255) ^ gammaCorrection
#PutPixelColour(x, y) = RGB(newRed, newGreen, newBlue)
from PIL import Image
import random
i = Image.open("input.png")
#pixel data is stored in pixels in form of two dimensional array
pixels = i.load()
width, height = i.size
j=Image.new(i.mode,i.size)
gamma=input("Enter the value of gamma range:0.25 to 2.0: ")
for x in range(width):
for y in range(height):
cpixel = pixels[x, y]
#gamma value can range from 0.25 to 2.0
gammaCorrection = 1 / gamma
#cpixel[0] contains red value cpixel[1] contains green value
#cpixel[2] contains blue value cpixel[3] contains alpha value
newRed = int(255 * ((cpixel[0]/ 255.0)**gammaCorrection))
newGreen = int(255 * ((cpixel[1]/ 255.0)**gammaCorrection))
newBlue = int(255 * ((cpixel[2]/ 255.0)**gammaCorrection))
j.putpixel((x,y),(newRed, newGreen, newBlue))
j.save('output.png')