|
| 1 | +# Author Bhargav K |
| 2 | + |
| 3 | +# Min-Max Filter |
| 4 | + |
| 5 | +from PIL import Image |
| 6 | +i = Image.open("input.jpg") |
| 7 | + |
| 8 | +#pixel data is stored in pixels in form of two dimensional array |
| 9 | +pixels = i.load() |
| 10 | +width, height = i.size |
| 11 | +k=Image.new(i.mode,i.size) |
| 12 | +sol=Image.new(i.mode,i.size) |
| 13 | + |
| 14 | +filtersize=input('Enter the size of the median filter: ') |
| 15 | +filterOffset=(filtersize-1)/2 |
| 16 | +filterheight=filtersize |
| 17 | +filterwidth=filtersize |
| 18 | +offsety=filterOffset |
| 19 | +offsetx=filterOffset |
| 20 | + |
| 21 | +j = Image.new(i.mode,(width+(2*offsetx),height+(2*offsety))) |
| 22 | + |
| 23 | +for x in range(width+(2*offsetx)): |
| 24 | + for y in range(height+(2*offsety)): |
| 25 | + if(x<offsetx): |
| 26 | + j.putpixel((x,y),(0,0,0)) |
| 27 | + if(y<offsety): |
| 28 | + j.putpixel((x,y),(0,0,0)) |
| 29 | + if(x>=width): |
| 30 | + j.putpixel((x,y),(0,0,0)) |
| 31 | + if(y>=height): |
| 32 | + j.putpixel((x,y),(0,0,0)) |
| 33 | + if(x>=offsetx and y>=offsety and x < width and y <height): |
| 34 | + cpixel=pixels[x-offsetx,y-offsety] |
| 35 | + j.putpixel((x,y),cpixel) |
| 36 | + |
| 37 | +for y in range(height+(2*offsety)): |
| 38 | + for x in range(width+(2*offsetx)): |
| 39 | + if(x>=offsetx and y>=offsety and x < width and y <height): |
| 40 | + blue=0.0 |
| 41 | + green=0.0 |
| 42 | + red=0.0 |
| 43 | + blues=list() |
| 44 | + reds=list() |
| 45 | + greens=list() |
| 46 | + filterx=x-offsetx |
| 47 | + filtery=y-offsety |
| 48 | + for fy in range(filterheight): |
| 49 | + for fx in range(filterwidth): |
| 50 | + cpixel=j.getpixel((x-offsety+fx,y-offsety+fy)) |
| 51 | + reds.append(float(cpixel[0])) |
| 52 | + greens.append(float(cpixel[1])) |
| 53 | + blues.append(float(cpixel[2])) |
| 54 | + reds.sort() |
| 55 | + blues.sort() |
| 56 | + greens.sort() |
| 57 | + index=len(reds) |
| 58 | + medianindex=index/2 |
| 59 | + if(index%2!=0): |
| 60 | + red=reds[medianindex] |
| 61 | + blue=blues[medianindex] |
| 62 | + green=greens[medianindex] |
| 63 | + else: |
| 64 | + red=(reds[medianindex]+reds[medianindex+1])/2 |
| 65 | + blue=(blues[medianindex]+blues[medianindex+1])/2 |
| 66 | + green=(greens[medianindex]+greens[medianindex+1])/2 |
| 67 | + k.putpixel((x-offsetx,y-offsety),(int(red),int(green),int(blue))) |
| 68 | + del reds[:] |
| 69 | + del blues[:] |
| 70 | + del greens[:] |
| 71 | + |
| 72 | +minmaxfiltersize=input('Enter the size of min-max filter: ') |
| 73 | +minmaxfilteroffset=(minmaxfiltersize-1)/2 |
| 74 | +filterheight=minmaxfiltersize |
| 75 | +filterwidth=minmaxfiltersize |
| 76 | +minmaxoffsety=minmaxfilteroffset |
| 77 | +minmaxoffsetx=minmaxfilteroffset |
| 78 | + |
| 79 | +z = Image.new(i.mode,(width+(2*minmaxoffsetx),height+(2*minmaxoffsety))) |
| 80 | + |
| 81 | +for x in range(width+(2*minmaxoffsetx)): |
| 82 | + for y in range(height+(2*minmaxoffsety)): |
| 83 | + if(x<minmaxoffsetx): |
| 84 | + z.putpixel((x,y),(0,0,0)) |
| 85 | + if(y<minmaxoffsety): |
| 86 | + z.putpixel((x,y),(0,0,0)) |
| 87 | + if(x>=width): |
| 88 | + z.putpixel((x,y),(0,0,0)) |
| 89 | + if(y>=height): |
| 90 | + z.putpixel((x,y),(0,0,0)) |
| 91 | + if(x>=minmaxoffsetx and y>=minmaxoffsety and x < width and y <height): |
| 92 | + cpixel=k.getpixel((x-minmaxoffsetx,y-minmaxoffsety)) |
| 93 | + z.putpixel((x,y),cpixel) |
| 94 | + |
| 95 | +for y in range(height+(2*minmaxoffsety)): |
| 96 | + for x in range(width+(2*minmaxoffsetx)): |
| 97 | + if(x>=minmaxoffsetx and y>=minmaxoffsety and x < width and y <height): |
| 98 | + minblue=255 |
| 99 | + mingreen=255 |
| 100 | + minred=255 |
| 101 | + maxblue=0 |
| 102 | + maxgreen=0 |
| 103 | + maxred=0 |
| 104 | + filterx=x-minmaxoffsetx |
| 105 | + filtery=y-minmaxoffsety |
| 106 | + for fy in range(filterheight): |
| 107 | + for fx in range(filterwidth): |
| 108 | + cpixel=z.getpixel((x-minmaxoffsety+fx,y-minmaxoffsety+fy)) |
| 109 | + minblue=min(minblue,cpixel[2]) |
| 110 | + mingreen=min(mingreen,cpixel[1]) |
| 111 | + minred=min(minred,cpixel[0]) |
| 112 | + maxblue=max(maxblue,cpixel[2]) |
| 113 | + maxgreen=max(maxgreen,cpixel[1]) |
| 114 | + maxred=max(maxred,cpixel[0]) |
| 115 | + red=maxred-minred |
| 116 | + green=maxgreen-mingreen |
| 117 | + blue=maxblue-minblue |
| 118 | + sol.putpixel((x-minmaxoffsetx,y-minmaxoffsety),(int(red),int(green),int(blue))) |
| 119 | +sol.save('minmax.png') |
0 commit comments