-
Notifications
You must be signed in to change notification settings - Fork 91
/
collision_testing.py
98 lines (72 loc) · 2.71 KB
/
collision_testing.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
#!/usr/bin/env python3
'''
collision_testing.py : tests pickled network on ability to predict a collision
Copyright (C) 2017 Jack Baird, Alex Cantrell, Keith Denning, Rajwol Joshi,
Simon D. Levy, Will McMurtry, Jacob Rosen
This file is part of AirSimTensorFlow
MIT License
'''
from AirSimClient import CarClient, CarControls, ImageRequest, AirSimImageType, AirSimClientBase
import os
import time
import tensorflow as tf
import pickle
import sys
from image_helper import loadgray, IMAGEDIR
from tf_softmax_layer import inference
TMPFILE = IMAGEDIR + '/active.png'
PARAMFILE = 'params.pkl'
IMGSIZE = 1032
INITIAL_THROTTLE= 0.65
BRAKING_DURATION = 15
# connect to the AirSim simulator
client = CarClient()
client.confirmConnection()
print('Connected')
client.enableApiControl(True)
car_controls = CarControls()
client.reset()
# go forward
car_controls.throttle = INITIAL_THROTTLE
car_controls.steering = 0
client.setCarControls(car_controls)
# Load saved training params as ordinary NumPy
W,b = pickle.load(open('params.pkl', 'rb'))
with tf.Graph().as_default():
# Placeholder for an image
x = tf.placeholder('float', [None, IMGSIZE])
# Our inference engine, intialized with weights we just loaded
output = inference(x, IMGSIZE, 2, W, b)
# TensorFlow initialization boilerplate
sess = tf.Session()
init_op = tf.global_variables_initializer()
sess.run(init_op)
# Once the brakes come on, we need to keep them on for a while before exiting; otherwise,
# the vehicle will resume moving.
brakingCount = 0
# Loop until we detect a collision
while True:
# Get RGBA camera images from the car
responses = client.simGetImages([ImageRequest(1, AirSimImageType.Scene)])
# Save it to a temporary file
image = responses[0].image_data_uint8
AirSimClientBase.write_file(os.path.normpath(TMPFILE), image)
# Read-load the image as a grayscale array
image = loadgray(TMPFILE)
# Run the image through our inference engine.
# Engine returns a softmax output inside a list, so we grab the first
# element of the list (the actual softmax vector), whose second element
# is the absence of an obstacle.
safety = sess.run(output, feed_dict={x:[image]})[0][1]
# Slam on the brakes if it ain't safe!
if safety < 0.5:
if brakingCount > BRAKING_DURATION:
print('BRAKING TO AVOID COLLISSION')
sys.stdout.flush()
break
car_controls.brake = 1.0
client.setCarControls(car_controls)
brakingCount += 1
# Wait a bit on each iteration
time.sleep(0.1)
client.enableApiControl(False)