-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDilateAndErodeFilter.py
125 lines (108 loc) · 3.81 KB
/
DilateAndErodeFilter.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Author Bhargav K
# Email [email protected]
# Morphological Filters
# DilateAndErodeFilter
from PIL import Image
i = Image.open("input.png")
#store pixels of input image
pixels = i.load()
width, height = i.size
k=Image.new(i.mode,i.size)
print "Filter size should be an odd positive number"
filtersize=input("Choose the Size of Filter: ")
print "Type (True) or (False) without braces"
applyred=input("Choose to apply red : ")
applygreen=input("Choose to apply green : ")
applyblue=input("Choose to apply blue : ")
print "Choose Morphology Type"
print "1 Dilation"
print "2 Erosion"
morphtype=input()
morphresetvalue=0.0
if(morphtype==2):
morphresetvalue=255.0
print "Choose Morphology Edge Type"
print "1 EdgeDetection"
print "2 SharpenEdgeDetection"
edgetype=input()
filterwidth=filtersize
filterheight=filtersize
filterOffset = (filterwidth-1)/2;
offsety=filterOffset
offsetx=filterOffset
j = Image.new(i.mode,(width+(2*offsetx),height+(2*offsety)))
for x in range(width+(2*offsetx)):
for y in range(height+(2*offsety)):
if(x<offsetx):
j.putpixel((x,y),(0,0,0))
if(y<offsety):
j.putpixel((x,y),(0,0,0))
if(x>=width):
j.putpixel((x,y),(0,0,0))
if(y>=height):
j.putpixel((x,y),(0,0,0))
if(x>=offsetx and y>=offsety and x <=width and y <=height):
cpixel=pixels[x-offsetx,y-offsety]
j.putpixel((x,y),cpixel)
for y in range(height+(2*offsety)):
for x in range(width+(2*offsetx)):
if(x>=offsetx and y>=offsety and x <=width and y <=height):
blue=morphresetvalue
green=morphresetvalue
red=morphresetvalue
#filterx=x-offsetx
#filtery=y-offsety
if(morphtype==1):
for fy in range(filterheight):
for fx in range(filterwidth):
cpixel=j.getpixel((x-offsety+fx,y-offsety+fy))
if(float(cpixel[0]) > red):
red=float(cpixel[0])
if(float(cpixel[1]) > green):
green=float(cpixel[1])
if(float(cpixel[2]) > blue):
blue=float(cpixel[2])
if(morphtype==2):
for fy in range(filterheight):
for fx in range(filterwidth):
cpixel=j.getpixel((x-offsety+fx,y-offsety+fy))
if(float(cpixel[0]) < red):
red=float(cpixel[0])
if(float(cpixel[1]) < green):
green=float(cpixel[1])
if(float(cpixel[2]) < blue):
blue=float(cpixel[2])
cpixel=j.getpixel((x,y))
if(applyred==False):
red=cpixel[0]
if(applygreen==False):
green=cpixel[1]
if(applyblue==False):
blue=cpixel[2]
if(edgetype==1 or edgetype==2):
if(morphtype==1):
red=red-cpixel[0]
green=green-cpixel[1]
blue=blue-cpixel[2]
if(morphtype==2):
red=cpixel[0]-red
green=cpixel[1]-green
blue=cpixel[2]-blue
if(edgetype==2):
red=red+cpixel[0]
green=green+cpixel[1]
blue=blue+cpixel[2]
if(red<0):
red=0
if(red>255):
red=255
if(green<0):
green=0
if(green>255):
green=255
if(blue<0):
blue=0
if(blue>255):
blue=255
k.putpixel((x-offsetx,y-offsety),(int(red),int(green),int(blue)))
k.save('output.png')