-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils.py
More file actions
344 lines (297 loc) · 12.3 KB
/
Copy pathutils.py
File metadata and controls
344 lines (297 loc) · 12.3 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
# ####################################################
# DE2-COM2 Computing 2
# Individual project
#
# Title: UTILS
# Authors: Liuqing Chen, Feng Shi,
# and Isaac Engel (13th September 2017)
# Last updated: 13th September 2017
# ####################################################
# ------ Please make sure you have installed the following packages: matplotlib, numpy, PIL -------
import matplotlib.pyplot as plt
import matplotlib.patches as patches
import numpy as np
from PIL import Image, ImageDraw
import operator
import random
"""
------------------------------- MAIN UTIL FUNCTIONS -------------------------------
The functions below are used in the performance test. They are useful tools that
may help you to test your algorithm. They are the following:
check_solution(target, solution): checks if a solution is valid
generate_target(width, height, density): generates a random solvable target shape
visualisation(target, solution): displays the target vs the solution
"""
def check_solution(target, solution):
"""
Check if a solution is valid
:param target: target shape
:param solution: student's solution
:return: valid: True or False
:return: missing: number of missing blocks
:return: excess: number of excess blocks
:return: error_pieces: list of wrongly labelled pieces
"""
valid = True
missing, excess = boundary_check(target, solution)
error_pieces = checkshape(solution)
if missing is None or excess is None or error_pieces is None:
valid = False
return valid, missing, excess, error_pieces
def generate_target(width, height, density):
"""
Generates a random solvable target shape
NOTE: this function may not be able to generate targets with density above 0.8, so it is
recommended to keep it below that value.
:param width: number of columns of the target (must be positive)
:param height: number of rows of the target (must be positive)
:param density: number of columns of the target (must be between 0 and 1, recommended < 0.8)
"""
assert width > 0, "width must be a positive integer"
assert height > 0, "height must be a positive integer"
assert 0 <= density <= 1, "density must be a number between 0 and 1"
size = width * height
nblocks = size * density
npieces, _ = divmod(nblocks, 4)
npieces = int(npieces)
target = [[0] * width for row in range(0, height)]
for count in range(0, npieces):
valid_piece = False
end_counter = 0
while not valid_piece and end_counter < 1000:
r = int(random.uniform(0, height))
c = int(random.uniform(0, width))
shape_id = int(random.uniform(0, 18)) + 1
shape = generate_shape(shape_id)
piece = [[y + r, x + c] for [y, x] in shape]
valid_piece = check_if_piece_is_valid(piece, target)
if valid_piece:
for [r, c] in piece:
target[r][c] = 1
end_counter += 1
return target
def visualisation(target, solution):
"""
Displays the target vs the solution
:param target: target shape
:param solution: student's solution
"""
wrong_list = checkshape(solution)
Ty_len = len(target)
Tx_len = len(target[0])
Sy_len = len(solution)
Sx_len = len(solution[0])
fig, (ax1, ax2) = plt.subplots(1, 2) # Create figure and axes
im = Image.new('RGB', (Tx_len, Ty_len), (255, 255, 255)) # white background-image
dr = ImageDraw.Draw(im)
ax1.imshow(im) # Display the background-image
ax2.imshow(im)
# -------------------- Target Display ----------------------
for y in range(Ty_len):
row = target[y]
for x in range(Tx_len):
if row[x] == 1:
ax1.add_patch(patches.Rectangle((x, y), 0.88, 0.88, color='b')) # draw a block
ax1.set_title('The Display of Task')
ax1.set_xlim([-1, Tx_len + 1])
ax1.set_ylim([-1, Ty_len + 1])
ax1.invert_yaxis()
# --------------- Solution Display ----------------------
def get_color(num): # generate a random color
np.random.seed(num)
c = list(np.random.rand(3))
c.append(1.0)
return tuple(c)
wrong_label_count = {}
for y in range(Sy_len):
row = solution[y]
for x in range(Sx_len):
shape, num = row[x]
if shape != 0:
ax2.add_patch(patches.Rectangle((x, y), 0.88, 0.88, color=get_color(num))) # draw a block
if num in wrong_list:
if wrong_label_count.setdefault(num, 0) == 0:
ax2.text(x, y + 0.8, '{}'.format(num)) # add label to blocks that have wrong shapes
wrong_label_count[num] += 1
ax2.set_title('The Display of Solutioin')
ax2.set_xlim([-1, Sx_len + 1])
ax2.set_ylim([-1, Sy_len + 1])
ax2.invert_yaxis()
plt.show()
"""
------------------------------- AUXILIARY FUNCTIONS -------------------------------
The functions below are used by the main functions above, and you shouldn't need
to call them directly from your code.
"""
def boundary_check(target, solution):
"""
Counts the missing and excess blocks
:param target: target shape
:param solution: student's solution
:return: missing: number of missing blocks
:return: excess: number of excess blocks
"""
missing = 0
excess = 0
height = len(target)
width = len(target[0])
if len(solution) != height:
print("ERROR: The target and the solution are not the same size (target's height = {}, solution's height = {})."
.format(height, len(solution)))
return None, None
for r in range(0, height):
if len(target[r]) != width or len(solution[r]) != width:
print("ERROR in row {}: The target and the solution are not the same size (target's width = {}, solution's "
"width = {}).".format(r, len(target[r]), len(solution[r])))
return None, None
for c in range(0, width):
if target[r][c] == 0:
if solution[r][c] != (0, 0):
excess += 1
elif target[r][c] == 1:
if solution[r][c] == (0, 0):
missing += 1
else:
print("ERROR in coordinates [x={}, y={}]: target block is {}, when it should be either 0 or 1"
.format(c, r, target[r][c]))
return None, None
return missing, excess
def checkposition(positions, shapeid):
"""
Check if positions of a piece corresponds with a specific shape
:param positions: positions of blocks of a piece
:param shapeid: the specified shape for this piece
:return: whether or not the positions are correct
"""
# the relative position of the last three node to the first node
goldenpositions = {
1: np.array([[1, 0], [0, 1], [1, 1]]),
2: np.array([[0, 1], [0, 2], [0, 3]]),
3: np.array([[1, 0], [2, 0], [3, 0]]),
4: np.array([[0, 1], [0, 2], [1, 2]]),
5: np.array([[-2, 1], [-1, 1], [0, 1]]),
6: np.array([[1, 0], [1, 1], [1, 2]]),
7: np.array([[1, 0], [2, 0], [0, 1]]),
8: np.array([[0, 1], [-1, 2], [0, 2]]),
9: np.array([[1, 0], [2, 0], [2, 1]]),
10: np.array([[1, 0], [0, 1], [0, 2]]),
11: np.array([[0, 1], [1, 1], [2, 1]]),
12: np.array([[0, 1], [1, 1], [0, 2]]),
13: np.array([[-1, 1], [0, 1], [1, 1]]),
14: np.array([[-1, 1], [0, 1], [0, 2]]),
15: np.array([[1, 0], [2, 0], [1, 1]]),
16: np.array([[1, 0], [-1, 1], [0, 1]]),
17: np.array([[0, 1], [1, 1], [1, 2]]),
18: np.array([[1, 0], [1, 1], [2, 1]]),
19: np.array([[-1, 1], [0, 1], [-1, 2]])
}
matchM = (np.array(positions[1:])-np.array(positions[0]) == goldenpositions[shapeid])
return np.all(matchM)
def checkshape(solution):
"""
Check if the pieces have the correct shape
:param solution: matrix containing the information of pieces, (shapeid, pieceid)
:return: id of pieces whose positions don't correspond with its shape
"""
error_pieces = []
Pieces = {} # dictornay of pieces
# extract all pieces from Matrix, and save their shapes and positions into Pieces
for y, row in enumerate(solution):
for x, point in enumerate(row):
shapeid = point[0]
pieceid = point[1]
if 0 in [pieceid, shapeid]:
if pieceid != 0:
print("ERROR in coordinates [x={}, y={}]: shapeID is 0, but pieceID is {} (it should be 0).".format(
x, y, pieceid))
return None
elif shapeid != 0:
print("ERROR in coordinates [x={}, y={}]: pieceID is 0, but shapeID is {} (it should be 0).".format(
x, y, shapeid))
return None
continue
elif pieceid in Pieces:
shapeid2 = Pieces[pieceid]['shape']
if shapeid2 != shapeid:
print("ERROR in coordinates [x={}, y={}]: shapeID is {}, but it belongs to piece {}, whose shapeID "
"is {}.".format(x, y, shapeid, pieceid, shapeid2))
return None
Pieces[pieceid]['node'].append((x, y))
else:
Pieces[pieceid] = {}
Pieces[pieceid]['shape'] = shapeid
Pieces[pieceid]['node'] = [(x, y)]
# for each peice sort poisitions (left-right,up-down), and check if the position is correct
for pid, piece in Pieces.items():
piece['node'].sort(key=operator.itemgetter(1, 0))
if len(piece['node']) != 4:
#print("ERROR: Piece {} has {} blocks (it should have 4).".format(pid, len(piece['node'])))
return None
if checkposition(piece['node'], piece['shape']):
continue
else:
error_pieces.append(pid)
# print(error_pieces)
return error_pieces
def check_if_piece_is_valid(piece, target):
"""
Utility function called by generate_target
:param piece: tentative piece
:param target: target shape
:return whether the piece is valid or not
"""
valid = True
height = len(target)
width = len(target[0])
for [r, c] in piece:
if r < 0 or r >= height or c < 0 or c >= width:
valid = False
break
elif target[r][c] == 1:
valid = False
break
return valid
def generate_shape(shape_id):
"""
Utility function called by generate_target
"""
shape = None
if shape_id == 1:
shape = [[0, 0], [0, 1], [1, 0], [1, 1]]
elif shape_id == 2:
shape = [[0, 0], [1, 0], [2, 0], [3, 0]]
elif shape_id == 3:
shape = [[0, 0], [0, 1], [0, 2], [0, 3]]
elif shape_id == 4:
shape = [[0, 0], [1, 0], [2, 0], [2, 1]]
elif shape_id == 5:
shape = [[0, 0], [1, -2], [1, -1], [1, 0]]
elif shape_id == 6:
shape = [[0, 0], [0, 1], [1, 1], [2, 1]]
elif shape_id == 7:
shape = [[0, 0], [0, 1], [0, 2], [1, 0]]
elif shape_id == 8:
shape = [[0, 0], [1, 0], [2, -1], [2, 0]]
elif shape_id == 9:
shape = [[0, 0], [0, 1], [0, 2], [1, 2]]
elif shape_id == 10:
shape = [[0, 0], [0, 1], [1, 0], [2, 0]]
elif shape_id == 11:
shape = [[0, 0], [1, 0], [1, 1], [1, 2]]
elif shape_id == 12:
shape = [[0, 0], [1, 0], [1, 1], [2, 0]]
elif shape_id == 13:
shape = [[0, 0], [1, -1], [1, 0], [1, 1]]
elif shape_id == 14:
shape = [[0, 0], [1, -1], [1, 0], [2, 0]]
elif shape_id == 15:
shape = [[0, 0], [0, 1], [0, 2], [1, 1]]
elif shape_id == 16:
shape = [[0, 0], [0, 1], [1, -1], [1, 0]]
elif shape_id == 17:
shape = [[0, 0], [1, 0], [1, 1], [2, 1]]
elif shape_id == 18:
shape = [[0, 0], [0, 1], [1, 1], [1, 2]]
elif shape_id == 19:
shape = [[0, 0], [1, -1], [1, 0], [2, -1]]
return shape