-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuadTree.py
238 lines (160 loc) · 6.19 KB
/
QuadTree.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
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
import os
os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = "hide"
import pygame
import sys
import matplotlib.pyplot as plt
import random
import timeit
DEFAULT_MAX_CAP = 5
DIMENSIONS = (1000, 800)
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def __eq__(self, other):
return self.x == other.y and self.y == other.y
class QuadTree:
def __init__(self, max_cap = DEFAULT_MAX_CAP, x = 0, y = 0, dim = DIMENSIONS):
self.is_divided = False
self.max_cap = max_cap
self.top_left = None
self.top_right = None
self.bottom_left = None
self.bottom_right = None
self.points = []
self.num_points = 0
# (0, 0) is the top-left corner of the window
self.x = x
self.y = y
self.dim = dim # dim is a tuple (width, height)
def point_is_within_bounds(self, point):
return point.x >= self.x and point.x <= self.x + self.dim[0] and point.y >= self.y and point.y <= self.y + self.dim[1]
def divide(self):
if self.is_divided:
return
self.top_left = QuadTree(self.max_cap, self.x, self.y, (self.dim[0]/2, self.dim[1]/2))
self.top_right = QuadTree(self.max_cap, self.x + self.dim[0]/2, self.y, (self.dim[0]/2, self.dim[1]/2))
self.bottom_left = QuadTree(self.max_cap, self.x, self.y + self.dim[1]/2, (self.dim[0]/2, self.dim[1]/2))
self.bottom_right = QuadTree(self.max_cap, self.x + self.dim[0]/2, self.y + self.dim[1]/2, (self.dim[0]/2, self.dim[1]/2))
self.is_divided = True
def insert_point(self, point):
if not self.point_is_within_bounds(point):
return
if self.num_points < self.max_cap:
self.points.append(point)
self.num_points += 1
return
if not self.is_divided:
self.divide()
self.top_left.insert_point(point)
self.top_right.insert_point(point)
self.bottom_left.insert_point(point)
self.bottom_right.insert_point(point)
def contains_point(self, point):
if not self.point_is_within_bounds(point):
return False
for p in self.points:
if p.x == point.x and p.y == point.y:
return True
if not self.is_divided:
return False
else:
return self.top_left.contains_point(point) or self.top_right.contains_point(point) or self.bottom_left.contains_point(point) or self.bottom_right.contains_point(point)
def draw(self, screen):
for point in self.points:
pygame.draw.rect(screen, (255, 255, 255), pygame.Rect(point.x, point.y, 5, 5))
if self.is_divided:
pygame.draw.rect(screen, (255, 255, 255), pygame.Rect(self.x + self.dim[0]/2, self.y, 2, self.dim[1]))
pygame.draw.rect(screen, (255, 255, 255), pygame.Rect(self.x, self.y + self.dim[1]/2, self.dim[0], 2))
self.top_left.draw(screen)
self.top_right.draw(screen)
self.bottom_left.draw(screen)
self.bottom_right.draw(screen)
def visualize():
# Setup PyGame
pygame.init()
screen = pygame.display.set_mode(DIMENSIONS)
# Setup Quadtree
quadtree = QuadTree()
running = True
mouse_down = False
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
if event.type == pygame.MOUSEBUTTONDOWN:
mouse_down = True
if event.type == pygame.MOUSEBUTTONUP and mouse_down:
pos = pygame.mouse.get_pos()
quadtree.insert_point(Point(pos[0], pos[1]))
mouse_down = False
quadtree.draw(screen)
pygame.display.flip()
def random_visualize():
# Setup PyGame
pygame.init()
screen = pygame.display.set_mode(DIMENSIONS)
# Setup Quadtree
quadtree = QuadTree()
running = True
i = 0
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
if i % 60 == 0:
point = Point(random.randrange(0, DIMENSIONS[0]), random.randrange(0, DIMENSIONS[1]))
quadtree.insert_point(point)
i += 1
quadtree.draw(screen)
pygame.display.flip()
def plot_speedup():
X = []
y = []
total_time_start = timeit.default_timer()
MAX_ITER = 4000
print("Calculating...")
for i in range(2, MAX_ITER+1):
X.append(i)
if(i % 100 == 0):
print("Number of points: " + str(i))
points = []
quad = QuadTree()
for _ in range(1, i):
point = Point(random.randrange(0, DIMENSIONS[0]), random.randrange(0, DIMENSIONS[1]))
points.append(point)
quad.insert_point(point)
to_find = points[len(points)//2]
start = None
end = None
l_time = None
q_time = None
start = timeit.default_timer()
for p in points:
if p.x == to_find.x and p.y == to_find.y:
end = timeit.default_timer()
l_time = end-start
start = timeit.default_timer()
if quad.contains_point(to_find):
end = timeit.default_timer()
q_time = end-start
y.append(float(l_time/q_time))
total_time_end = timeit.default_timer()
print("Total time taken: "+ str(total_time_end-total_time_start) + " seconds.")
plt.plot(X, y)
plt.xlabel("Number of points")
plt.ylabel("Speedup")
plt.title("Speedup of quadtree search over linear search")
plt.show()
def main():
num_args = len(sys.argv) - 1
if num_args == 1 and (sys.argv[1].lower() == "--visualize" or sys.argv[1].lower() == "-v"):
visualize()
elif num_args == 1 and (sys.argv[1].lower() == "--random" or sys.argv[1].lower() == "-r"):
random_visualize()
elif num_args == 1 and (sys.argv[1].lower() == "--plot" or sys.argv[1].lower() == "-p"):
plot_speedup()
else:
visualize()
if __name__ == "__main__":
main()