-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathutils.py
43 lines (40 loc) · 1.15 KB
/
utils.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
import numpy as np
import cv2
# https://rosettacode.org/wiki/Bitmap/Bresenham%27s_line_algorithm#Python
def Bresenham(x0, x1, y0, y1):
rec = []
dx = abs(x1 - x0)
dy = abs(y1 - y0)
x, y = x0, y0
sx = -1 if x0 > x1 else 1
sy = -1 if y0 > y1 else 1
if dx > dy:
err = dx / 2.0
while x != x1:
rec.append((x, y))
err -= dy
if err < 0:
y += sy
err += dx
x += sx
else:
err = dy / 2.0
while y != y1:
rec.append((x, y))
err -= dx
if err < 0:
x += sx
err += dy
y += sy
return rec
def EndPoint(pos, bot_param, sensor_data):
pts_list = []
inter = (bot_param[2] - bot_param[1]) / (bot_param[0]-1)
for i in range(bot_param[0]):
theta = pos[2] + bot_param[1] + i*inter
pts_list.append(
[ pos[0]+sensor_data[i]*np.cos(np.deg2rad(theta)),
pos[1]+sensor_data[i]*np.sin(np.deg2rad(theta))] )
return pts_list
def gaussian(x, mu, sig):
return 1./(np.sqrt(2.*np.pi)*sig)*np.exp(-np.power((x - mu)/sig, 2.)/2)