forked from dsadigh/driving-interactions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lane.py
executable file
·29 lines (26 loc) · 884 Bytes
/
lane.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
import numpy as np
import theano as th
import theano.tensor as tt
import feature
class Lane(object): pass
class StraightLane(Lane):
def __init__(self, p, q, w):
self.p = np.asarray(p)
self.q = np.asarray(q)
self.w = w
self.m = (self.q-self.p)/np.linalg.norm(self.q-self.p)
self.n = np.asarray([-self.m[1], self.m[0]])
def shifted(self, m):
return StraightLane(self.p+self.n*self.w*m, self.q+self.n*self.w*m, self.w)
def dist2(self, x):
r = (x[0]-self.p[0])*self.n[0]+(x[1]-self.p[1])*self.n[1]
return r*r
def gaussian(self, width=0.5):
@feature.feature
def f(t, x, u):
return tt.exp(-0.5*self.dist2(x)/(width**2*self.w*self.w/4.))
return f
if __name__ == '__main__':
lane = StraightLane([0., -1.], [0., 1.], 0.1)
x = tt.vector()
lane.feature()(0, x, 0)