forked from BhargavGamit/ImageManipulationAlgorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBitonalAlgo.py
47 lines (46 loc) · 1.69 KB
/
BitonalAlgo.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
36
37
38
39
40
41
42
43
44
45
46
47
# Author Sri Vennela Vaishnapu
# Email [email protected]
# Bitonal algorithm
#if (pixelBuffer[k] + pixelBuffer[k + 1] +
# pixelBuffer[k + 2] <= threshold)
# {
# pixelBuffer[k] = darkColor.B;
# pixelBuffer[k + 1] = darkColor.G;
# pixelBuffer[k + 2] = darkColor.R;
# }
# else
# {
# pixelBuffer[k] = lightColor.B;
# pixelBuffer[k + 1] = lightColor.G;
# pixelBuffer[k + 2] = lightColor.R;
# }
from PIL import Image
print "Enter values between 0 and 255"
lightcolor_red=input("Enter red value of light color: ")
lightcolor_blue=input("Enter blue value of light color: ")
lightcolor_green=input("Enter green value of light color: ")
darkcolor_red=input("Enter red value of dark color: ")
darkcolor_blue=input("Enter blue value of dark color: ")
darkcolor_green=input("Enter green value of dark color: ")
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)
threshold = 374
for x in range(width):
for y in range(height):
cpixel = pixels[x, y]
#cpixel[0] contains red value cpixel[1] contains green value
#cpixel[2] contains blue value cpixel[3] contains alpha value
if(int(cpixel[0] + cpixel[1] +cpixel[2]) > int(threshold)):
red = lightcolor_red
green = lightcolor_green
blue = lightcolor_blue
j.putpixel((x,y),(red,green,blue))
else:
red = darkcolor_red
green = darkcolor_green
blue = darkcolor_blue
j.putpixel((x,y),(red,green,blue))
j.save('output.png')