-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchalkboard.py
85 lines (71 loc) · 2.38 KB
/
chalkboard.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
import Image
import communications
class ChalkBoard:
def loadImage(self, fileName, maxWidth, maxHeight):
im = Image.open(fileName)
size = maxWidth, maxHeight
im.thumbnail(size)
self.maxWidth = maxWidth
self.maxHeight = maxHeight
self.width = im.size[0]
self.height = im.size[1]
# self.black = [[0 for y in range(self.height)] for x in range(self.width)]
self.colors = [[[0 for z in range(5)] for y in range(self.height)] for x in range(self.width)]
self.sprayed = [[[0 for z in range(5)] for y in range(self.height)] for x in range(self.width)]
# self.sprayed = [[0 for y in range(self.height)] for x in range(self.width)]
for x in range(self.width):
for y in range(self.height):
point = x,y
pixel = im.getpixel(point)
cmyk = self.getCMYK(pixel[0], pixel[1], pixel[2])
for c in range(4):
if cmyk[c]>=0.5:
self.colors[x][y][c]=1
if pixel[0]<128: self.colors[x][y][4]=1
# c - 0=Cyan, 1=Magenta, 2=Yellow, 3=Black, 4=Grayscale
def checkSpray(self, xPercent, yPercent, c):
#communications.Step()
x = int(xPercent * self.maxWidth)
y = int(yPercent * self.maxHeight)
#print str(x) + "," + str(y) + " - " + str(c)
if x<self.width and y<self.height and self.colors[x][y][c]==1:
if self.sprayed[x][y][c]==0:
self.sprayed[x][y][c]=1
if self.spraying==0:
communications.StopSpraying()
communications.SprayChalk()
print "Spraying " + str(x) + "," + str(y) + " - " + str(c)
self.spraying = 1
else:
if self.spraying==1:
communications.StopSpraying()
self.spraying = 0
print "Stopped " + str(x) + "," + str(y) + " - " + str(c)
def getCMYK(this, r,g,b):
cmyk_scale = 100
if (r == 0) and (g == 0) and (b == 0):
# black
return 0, 0, 0, cmyk_scale
# rgb [0,255] -> cmy [0,1]
c = 1 - r / 255.
m = 1 - g / 255.
y = 1 - b / 255.
# extract out k [0,1]
min_cmy = min(c, m, y)
c = (c - min_cmy) / (1 - min_cmy)
m = (m - min_cmy) / (1 - min_cmy)
y = (y - min_cmy) / (1 - min_cmy)
k = min_cmy
# rescale to the range [0,cmyk_scale]
return c*cmyk_scale, m*cmyk_scale, y*cmyk_scale, k*cmyk_scale
def init(self):
self.spraying=0
communications.init("COM6")
print "init"
#bot = StreetArtBot()
#bot.loadImage("images/logo.png", 120, 90)
#bot.checkSpray(0.98, 0.50, 4)
#bot.checkSpray(0.98, 0.51, 4)
#for x in range(100):
# for y in range(100):
# bot.checkSpray(x/100.0, y/100.0, 4)