-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiou.py
49 lines (39 loc) · 1.05 KB
/
iou.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
import math
#these functions are for removing double counts
#intersection over union (iou) is used as a threshold value to determine if double count is present
def calcDist(x1,y1,x2,y2):
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
return dist
def circleArea(r):
return (math.pi*r*r)
def iou(r,R,x1,y1,x2,y2):
d = calcDist(x1,y1,x2,y2)
if(R < r):
temp =r
r = R
R = temp
if(d>(r+R)):
return 0
p1 = (d*d + r*r - R*R)/(2*d*r)
p2 = (d*d + R*R - r*r)/(2*d*R)
p3 = ((-d+r+R)*(d+r-R)*(d-r+R)*(d+r+R))
if(p1>1):
p1 = 1
if(p1<-1):
p1=-1
if(p2>1):
p2 = 1
if(p2<-1):
p2=-1
if(p3<0):
p3 = 0
part1 = r*r*math.acos(p1)
part2 = R*R*math.acos(p2)
part3 = 0.5*math.sqrt(p3)
bigCircleArea = circleArea(R)
smallCircleArea = circleArea(r)
interArea = part1 + part2 - part3
if(interArea < 0):
interArea=0
iou_val = (interArea/ float(bigCircleArea+smallCircleArea-interArea))
return iou_val