-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeometry.py
81 lines (71 loc) · 2.6 KB
/
geometry.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
from shapely.geometry import Polygon
from shapely.geometry import Point
from shapely.ops import cascaded_union
def get_cameras_coordinates(net_density, gallery_coordinates):
min_x, max_x, min_y, max_y = get_extremes_from_coordinates(gallery_coordinates)
gallery_polygon=Polygon(gallery_coordinates)
cameras_coordinates=[]
step=1.0/net_density
current_y=min_y
while(current_y<max_y):
current_x=min_x
while(current_x<max_x):
point=Point(current_x,current_y)
if(point.within(gallery_polygon)):
cameras_coordinates.append(point)
current_x+=step
current_y+=step
return cameras_coordinates
def get_extremes_from_coordinates(gallery_coordinates):
min_x=gallery_coordinates[0][0]
max_x=gallery_coordinates[0][0]
min_y=gallery_coordinates[0][1]
max_y=gallery_coordinates[0][1]
for i in range(1,len(gallery_coordinates)):
if gallery_coordinates[i][0] < min_x:
min_x=gallery_coordinates[i][0]
if gallery_coordinates[i][0] > max_x:
max_x=gallery_coordinates[i][0]
if gallery_coordinates[i][1] < min_y:
min_y = gallery_coordinates[i][1]
if gallery_coordinates[i][1] > max_y:
max_y = gallery_coordinates[i][1]
return min_x,max_x,min_y,max_y
class Camera:
def __init__(self,point,radius):
self.point=point
self.radius=radius
self.enabled=True
self.circle=point.buffer(radius)
def disableCamera(self):
self.enabled=False
class Gallery:
gallery_polygon = None
cameras = None
camerasAmount = 0
def get_cameras_array(cameras_coordinates,radius):
cameras = []
for (i, coordinate) in enumerate(cameras_coordinates):
camera = Camera(coordinate, radius)
cameras.append(camera)
return cameras
def getIndexOfCamerasToTurnOff(camerasState,index):
indexArray = []
hScore = 0
for (i, camera) in enumerate(camerasState):
if camerasState[i]:
camerasState[i] = False
if i>index:
galleryCovered = isGalleryCovered(camerasState)
if galleryCovered:
hScore +=1
indexArray.append(i)
camerasState[i] = True
return (indexArray, hScore)
def isGalleryCovered(camerasState):
circles_array=[]
for (i, camera) in enumerate(camerasState):
if(camerasState[i]):
circles_array.append(Gallery.cameras[i].circle)
circles_union=cascaded_union(circles_array)
return (circles_union.intersection(Gallery.gallery_polygon)==Gallery.gallery_polygon)