-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathexercise_15.py
41 lines (31 loc) · 1.17 KB
/
exercise_15.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
#This program converts a color image to grayscale
from graphics import *
def fileWindow(infile, wWidth, wHeight):
win = GraphWin("Original", wWidth, wHeight)
#win.setCoords(-10, -10, 10, 10)
infile.draw(win)
#win.getMouse()
height = 1
while height < wHeight:
for i in range (wWidth - 1):
#r, g, b = get pixel info for current row and column
r, g, b = infile.getPixel(i+1, height)
#brightness = int(round(0.299 * r + 0.587 * g + 0.114 * b))
#set pixel to color_rgb(brightness, brightness, brightness)
infile.setPixel((i + 1), (height), color_rgb(255-r, 255-g, 255-b))
#update the image # to see progress row by row
win.update()
height = height + 1
return win
#Get file from user
def main():
fname = input("Enter a filename to be converted: ")
infile = Image(Point(0,0), fname)
wWidth = infile.getWidth()
wHeight = infile.getHeight()
infile = Image(Point(wWidth/2, wHeight/2), fname)
win = fileWindow(infile, wWidth, wHeight)
outfileName = input("Where should we save the updated file: ")
infile.save(outfileName)
#userfile.py chapt 5
main()