Skip to content

Commit 93c3ecc

Browse files
committed
Another bug fix
1 parent 482159f commit 93c3ecc

4 files changed

+6
-8
lines changed

AverageColoursFilter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
j.putpixel((x,y),(0,0,0))
4444
if(y>=height):
4545
j.putpixel((x,y),(0,0,0))
46-
if(x>=offsetx and y>=offsety and x < =width and y <=height):
46+
if(x>=offsetx and y>=offsety and x <=width and y <=height):
4747
cpixel=pixels[x-offsetx,y-offsety]
4848
j.putpixel((x,y),cpixel)
4949

5050

5151
for y in range(height+(2*offsety)):
5252
for x in range(width+(2*offsetx)):
53-
if(x>=offsetx and y>=offsety and x < =width and y <=height):
53+
if(x>=offsetx and y>=offsety and x <=width and y <=height):
5454
blue=0.0
5555
green=0.0
5656
red=0.0

AveragingAlgo-BW.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
i = Image.open("input.png")
88

99
#pixel data is stored in pixels in form of two dimensional array
10-
pixels = i.load()
10+
pixels = i.load()
1111
width, height = i.size
1212
j=Image.new(i.mode,i.size)
1313

@@ -19,5 +19,3 @@
1919
gray = int(((cpixel[0])+(cpixel[1])+(cpixel[2]))/2)
2020
j.putpixel((image_width_iterator,image_height_iterator),(gray,gray,gray))
2121
j.save('output.png')
22-
23-

BooleanEdgeDetectionFilter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@
6363
j.putpixel((x,y),(0,0,0))
6464
if(y>=height):
6565
j.putpixel((x,y),(0,0,0))
66-
if(x>=offsetx and y>=offsety and x < =width and y <=height):
66+
if(x>=offsetx and y>=offsety and x <=width and y <=height):
6767
cpixel=pixels[x-offsetx,y-offsety]
6868
j.putpixel((x,y),cpixel)
6969

7070
for y in range(height+(2*offsety)):
7171
for x in range(width+(2*offsetx)):
72-
if(x>=offsetx+1 and y>=offsety+1 and x < =width and y <=height):
72+
if(x>=offsetx+1 and y>=offsety+1 and x <=width and y <=height):
7373
matrixmean=0
7474
matrixtotal=0
7575
matrixvariance=0.0

DilateAndErodeFilter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
for y in range(height+(2*offsety)):
6464
for x in range(width+(2*offsetx)):
65-
if(x>=offsetx and y>=offsety and x < =width and y <=height):
65+
if(x>=offsetx and y>=offsety and x <=width and y <=height):
6666
blue=morphresetvalue
6767
green=morphresetvalue
6868
red=morphresetvalue

0 commit comments

Comments
 (0)